-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.57 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "shrinkwrap-scalpel",
"version": "1.0.0",
"description": "Avoid absorbing unwanted dependency updates while upgrading specific modules within a shrinkwrap.",
"author": "Tyler Peterson <[email protected]>",
"main": "src/scalpel/scalpel.js",
"bin": {
"scalp": "bin/scalpel.js",
"scalpel": "bin/scalpel.js"
},
"scripts": {
"postinstall": "npm run build",
"build": "mkdir -p dist && cp -R src/ dist && babel src/index.js --out-file ./dist/index.js --presets=es2015",
"test": "xo {bin,src}/**/*.js && mocha test/spec/test.js",
"docs": "jsdoc src/index.js -r -p -d docs",
"lint": "xo {bin,src}/*.js || true"
},
"dependencies": {
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.22.0",
"chalk": "^1.1.3",
"find-up": "^1.1.2",
"fs-jetpack": "^0.9.2",
"inquirer": "^1.1.2",
"lodash": "^4.14.2"
},
"devDependencies": {
"chai": "^3.4.1",
"jsdoc": "^3.4.0",
"mocha": "^2.3.4",
"xo": "^0.16.0"
},
"bugs": {
"url": "https://github.com/tylerjpeterson/shrinkwrap-scalpel/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/tylerjpeterson/shrinkwrap-scalpel"
},
"homepage": "https://github.com/tylerjpeterson/shrinkwrap-scalpel",
"contributors": [
""
],
"babel": {
"presets": [
"es2015"
]
},
"xo": {
"rules": {
"max-lines": 0,
"no-new": 0
},
"globals": [
"document",
"window",
"require",
"module"
]
},
"preferGlobal": true,
"keywords": [],
"engines": {
"node": ">=0.12.7"
}
}