-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.05 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
{
"name": "system-install",
"version": "1.0.4",
"description": "Get the install command for the system package manager",
"main": "index.js",
"bin": {
"system-install": "./cli.js"
},
"scripts": {
"preversion": "babel --presets es2015 index.babel.js -o index.js && git add index.js",
"postpublish": "git push && git push --tags",
"test": "node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arve0/system-install.git"
},
"keywords": [
"apt-get",
"chocolatey",
"brew",
"pacman",
"nix",
"yum",
"dnf",
"pkg",
"pkg_add",
"emerge",
"zypper",
"nix",
"cross",
"platform",
"cross-platform",
"package",
"manager"
],
"author": "Arve Seljebu",
"license": "MIT",
"bugs": {
"url": "https://github.com/arve0/system-install/issues"
},
"homepage": "https://github.com/arve0/system-install#readme",
"dependencies": {
"which": "^1.2.9"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0"
}
}