-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
70 lines (70 loc) · 1.83 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "npm-quick-run",
"description": "Quickly run NPM script by prefix without typing the full name",
"main": "src/quick-run.js",
"version": "0.0.0-development",
"bin": {
"nr": "bin/npm-quick-run.js",
"nrun": "bin/npm-quick-run.js"
},
"scripts": {
"pretest": "npm run lint",
"unit": "mocha src/*-spec.js",
"test": "npm run unit",
"commit": "git-issues && commit-wizard",
"issues": "git-issues",
"semantic-release": "semantic-release",
"echo": "echo hello",
"error": "echo \"an error on purpose\" && exit -1",
"lint": "standard --verbose --fix bin/*.js src/*.js",
"src:lint": "standard --verbose --fix bin/*.js",
"example": "node bin/npm-quick-run.js li",
"size": "npm pack --dry",
"test-foo": "node -e \"console.assert(process.argv[1] === 'foo bar', process.argv)\""
},
"files": [
"bin",
"src/*.js",
"!src/*-spec.js",
"README.md"
],
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/npm-quick-run.git"
},
"keywords": [
"npm",
"utility",
"run",
"script",
"partial",
"quick"
],
"author": "Gleb Bahmutov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bahmutov/npm-quick-run/issues"
},
"homepage": "https://github.com/bahmutov/npm-quick-run#readme",
"dependencies": {
"bluebird": "3.5.1",
"chalk": "2.3.0",
"cross-spawn": "5.1.0",
"debug": "3.1.0",
"findup": "0.1.5",
"fuzzy": "0.1.3",
"inquirer": "3.0.5",
"inquirer-autocomplete-prompt": "0.8.0",
"json-package": "1.3.0",
"simple-bin-help": "1.7.0"
},
"devDependencies": {
"execa-wrap": "1.2.1",
"git-issues": "1.3.1",
"mocha": "4.0.1",
"semantic-release": "^17.4.1",
"snap-shot-it": "4.0.1",
"standard": "16.0.3"
}
}