-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 931 Bytes
/
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
{
"name": "npm-list-scripts",
"version": "0.0.2",
"description": "A simple cli that list current package scripts, because something I forget their names",
"main": "main.js",
"scripts": {
"test": "standard & ./test.js",
"prestart": "standard",
"prepublish": "npm run test",
"start": "./main.js"
},
"preferGlobal": true,
"bin": {
"npm-list-scripts": "./main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vrunoa/npm-list-scripts.git"
},
"keywords": [
"npm",
"list",
"scripts"
],
"author": "vruno <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vrunoa/npm-list-scripts/issues"
},
"homepage": "https://github.com/vrunoa/npm-list-scripts#readme",
"dependencies": {
"chalk": "^1.1.3",
"find-root": "^1.0.0",
"semafor": "0.0.1"
},
"devDependencies": {
"standard": "^8.6.0"
}
}