forked from bbc/speculate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.28 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
{
"name": "specit",
"version": "1.4.3",
"description": "Automatically generates an RPM Spec file for your Node.js project",
"main": "index.js",
"scripts": {
"test": "mocha",
"lint": "eslint .",
"posttest": "npm run lint",
"coverage": "istanbul cover _mocha -- -R dot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Okoyl/specit.git"
},
"keywords": [
"spec",
"rpm",
"file",
"node",
"generate"
],
"author": "[email protected]",
"contributors": [
{
"name": "Okoyl"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Okoyl/specit/issues"
},
"homepage": "https://github.com/Okoyl/specit#readme",
"bin": {
"specit": "./bin/specit.js"
},
"dependencies": {
"commander": "^2.9.0",
"hogan.js": "^3.0.2",
"lodash": "^4.6.1",
"rimraf": "^2.5.2",
"tar-fs": "^1.11.1",
"update-notifier": "^1.0.3"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"node": true,
"mocha": true
},
"rules": {
"semi": 2,
"no-console": 0
}
},
"devDependencies": {
"codeclimate-test-reporter": "^0.3.1",
"eslint": "^2.4.0",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"sinon": "^1.17.3"
}
}