-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
47 lines (47 loc) · 1.01 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
{
"name": "npm2rpm",
"version": "6.2.0",
"description": "Convert npm packages to rpm packages",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dLobatog/npm2rpm.git"
},
"keywords": [
"npm",
"rpm",
"package",
"redhat",
"centos",
"fedora",
"nodejs"
],
"author": "Daniel Lobato Garcia <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/dLobatog/npm2rpm/issues"
},
"dependencies": {
"colors": "^1.1.2",
"commander": "^2.9.0",
"handlebars": "^4.0.11",
"normalize-package-data": "^3.0.0",
"npm-remote-ls": "^1.3.2",
"request": "^2.81.0",
"semver": "^5.4.1",
"tar": "^4.0.0",
"tmp": "^0.0.28"
},
"devDependencies": {
"mocha": ">= 3.0.2 < 6.0"
},
"homepage": "https://github.com/dLobatog/npm2rpm#readme",
"preferGlobal": true,
"bin": {
"npm2rpm": "bin/npm2rpm.js",
"packagejson2rpm": "bin/packagejson2rpm.js"
}
}