forked from rictorres/node-rpm-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.34 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
{
"name": "rpm-builder",
"version": "0.7.0",
"description": "Build RPM packages using Node.js",
"license": "MIT",
"homepage": "https://github.com/rictorres/node-rpm-builder",
"author": {
"name": "Ricardo Torres",
"email": "[email protected]",
"url": "http://rictorres.com"
},
"main": "index.js",
"engines": {
"node": ">=0.10.0",
"iojs": ">=1.0.0"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha",
"coverage": "./node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*.js",
"lint": "./node_modules/jshint/bin/jshint --reporter ./node_modules/jshint-stylish/stylish.js index.js lib/*.js test/*.js; true"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/rictorres/node-rpm-builder.git"
},
"bugs": {
"url": "https://github.com/rictorres/node-rpm-builder/issues"
},
"keywords": [
"rpm",
"package",
"packager",
"build",
"builder"
],
"readmeFilename": "README.md",
"dependencies": {
"chalk": "^0.5.1",
"fs-extra": "^0.16.3",
"globby": "^1.1.0",
"lodash": "^3.2.0",
"shortid": "^2.1.3"
},
"devDependencies": {
"istanbul": "^0.3.6",
"jshint": "^2.6.0",
"jshint-stylish": "^1.0.0",
"mocha": "^2.1.0",
"pre-commit": "0.0.11"
}
}