-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
39 lines (39 loc) · 902 Bytes
/
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
{
"name": "npm-install-peers",
"version": "1.2.1",
"description": "CLI command to install npm peerDependencies",
"preferGlobal": true,
"bin": {
"npm-install-peers": "bin/npm-install-peers.js"
},
"scripts": {
"lint": "eslint .",
"build": "babel src -d dist",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spatie/npm-install-peers.git"
},
"keywords": [
"npm",
"peerdependencies",
"peers",
"peerdeps"
],
"author": "Sebastian De Deyne",
"license": "MIT",
"bugs": {
"url": "https://github.com/spatie/npm-install-peers/issues"
},
"homepage": "https://github.com/spatie/npm-install-peers#readme",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"eslint": "^3.8.1"
},
"dependencies": {
"chalk": "^1.1.3",
"npm": "< 7.0"
}
}