-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.39 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
{
"name": "script-list",
"version": "1.0.0",
"description": "An utility tool to list npm scripts from package.json file",
"bin": {
"script-list": "lib/cli.js",
"sl": "lib/cli.js"
},
"scripts": {
"build": "babel src -d lib",
"start": "node src/cli.js",
"test": "mocha test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rousan/sl.git"
},
"keywords": [
"sl",
"npm-list-scripts",
"npm-scripts-list",
"scripts-list",
"npm-ls-scripts",
"ls",
"script",
"scripts",
"npm-ls",
"npm",
"node",
"list",
"cli",
"automation",
"javascript",
"tool",
"mac",
"windows",
"linux",
"ubuntu",
"unix",
"console"
],
"author": "Rousan Ali <[email protected]> (https://rousan.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rousan/sl/issues"
},
"homepage": "https://github.com/rousan/sl#readme",
"dependencies": {
"chalk": "^2.3.1",
"commander": "2.14.1",
"glob": "^7.1.2",
"lodash": "^4.17.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"eslint": "^4.17.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"mocha": "^5.0.1"
},
"engines": {
"node": ">=4.0.0"
}
}