-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 955 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
{
"name": "salinger",
"version": "2.4.0",
"description": "Ecosystem-free and flexible task runner that goes well with npm scripts.",
"main": "lib/index.js",
"bin": {
"salinger": "bin/index.js"
},
"scripts": {
"test": "tape tests | tap-spec",
"cover": "istanbul cover tests && cat coverage/lcov.info | coveralls && rm -rf coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scriptype/salinger.git"
},
"keywords": [
"task runner",
"npm scripts",
"build automation"
],
"author": "scriptype (Mustafa Enes Ertarhanaci)",
"license": "MIT",
"bugs": {
"url": "https://github.com/scriptype/salinger/issues"
},
"homepage": "https://github.com/scriptype/salinger#readme",
"dependencies": {
"chalk": "^1.1.3"
},
"devDependencies": {
"coveralls": "^3.0.3",
"eslint": "^3.15.0",
"istanbul": "^0.4.5",
"tap-spec": "^5.0.0",
"tape": "^4.6.3"
}
}