-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.09 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
{
"name": "npm-autoinstaller",
"version": "1.3.1",
"description": "automatically installs missing npm packages or updates them when you checkout another branch with git or perform a merge/rebase",
"repository": "cyrilwanner/npm-autoinstaller",
"engines": {
"node": ">= 4.0"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "babel src --out-dir dist --copy-files",
"install": "node ./install",
"watch": "npm run build -- --watch",
"test": "npm run build && mocha --require babel-register --recursive"
},
"keywords": [
"npm",
"install",
"installer",
"autoinstall",
"autoinstaller",
"git",
"hooks"
],
"author": "Cyril Wanner <info@cyr.li>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.24.0",
"chai": "^4.1.1",
"chai-spies-next": "^0.9.3",
"mocha": "^5.0.4",
"mock-fs": "^4.4.1",
"proxyquire": "^2.0.0",
"rimraf": "^2.6.1"
},
"dependencies": {
"colors": "^1.1.2",
"deepmerge": "^2.1.0",
"readline-sync": "^1.4.7"
}
}