-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
56 lines (56 loc) · 1.23 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
{
"name": "speculate",
"version": "5.0.0",
"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/bbc/speculate.git"
},
"keywords": [
"spec",
"rpm",
"file",
"node",
"generate"
],
"author": "[email protected]",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bbc/speculate/issues"
},
"homepage": "https://github.com/bbc/speculate#readme",
"bin": {
"speculate": "./bin/speculate.js"
},
"dependencies": {
"commander": "^10.0.0",
"handlebars": "^4.7.7",
"rimraf": "^4.1.0",
"tar-fs": "^2.1.1"
},
"eslintConfig": {
"extends": "iplayer",
"parserOptions": {
"ecmaVersion": 8
}
},
"devDependencies": {
"codeclimate-test-reporter": "^0.5.1",
"eslint": "^8.32.0",
"eslint-config-iplayer": "^8.0.0",
"eslint-plugin-mocha": "^10.1.0",
"istanbul": "^0.4.5",
"mocha": "^10.2.0",
"sinon": "^15.0.1"
},
"engines": {
"node": ">=12.22.0"
}
}