-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
{
"name": "batman-cli",
"version": "1.1.3",
"description": "batman-cli is an advance command runner tool. Easy to maintain command runner. Easy to config via external json or js.",
"bin": {
"batman": "index.js",
"joker": "index.js"
},
"main": "index.js",
"scripts": {
"batman": "batman",
"eslint": "eslint",
"batman:list": "batman list --npm",
"batman:lint": "batman run lint",
"batman:test": "batman run test",
"lint": "eslint lib/**",
"lint:fix": "eslint lib/** --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"cli",
"command-line",
"arguments",
"runner",
"ng",
"batman",
"batman-cli",
"super-cli",
"super-ng"
],
"author": "Deepak Vishwakarma <[email protected]>",
"contributors": [],
"repository": {
"type": "git",
"url": "git://github.com/deepakshrma/batman-cli.git"
},
"license": "MIT",
"dependencies": {
"commander": "2.14.1",
"fs-extra": "5.0.0"
},
"devDependencies": {
"eslint": "4.17.0",
"batman-cli": "latest"
}
}