-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 787 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 787 Bytes
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
{
"name": "autorpmspec",
"version": "1.1.7",
"description": "Auto-Generate RPM Spec",
"main": "index.js",
"author": "J. M. Becker",
"license": "Apache-2.0",
"keywords": [
"rpm",
"spec",
"rpmspec",
"generate"
],
"repository": {
"type": "git",
"url": "https://github.com/techzilla/autorpmspec.git"
},
"bugs": "https://github.com/techzilla/autorpmspec/issues",
"devDependencies": {
"standard": "^8.6.0"
},
"dependencies": {
"commander": "^2.9.0",
"handlebars": "^4.0.6",
"mixin-deep": "^1.1.3",
"mkdirp": "^0.5.1",
"tar-fs": "^1.15.0"
},
"bin": {
"autorpmspec": "./bin/autorpmspec.js"
},
"scripts": {
"fix": "standard --fix",
"test": "standard",
"build": "npm test && npm publish"
}
}