forked from vercel/pkg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.8 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
67
68
69
70
71
72
{
"name": "pkg",
"version": "3.0.3",
"description": "Package your Node.js project into an executable",
"main": "lib-es5/index.js",
"license": "MIT",
"repository": "zeit/pkg",
"bin": {
"pkg": "lib-es5/bin.js"
},
"files": [
"lib-es5/*.js",
"dictionary/*.js",
"prelude/*.js"
],
"babel": {
"plugins": [
"transform-async-to-generator",
"transform-runtime"
],
"presets": [
"es2015"
]
},
"dependencies": {
"acorn": "5.0.3",
"babel-runtime": "6.23.0",
"chalk": "1.1.3",
"escodegen": "1.8.1",
"fs-promise": "2.0.2",
"globby": "6.1.0",
"in-publish": "2.0.0",
"minimist": "1.2.0",
"multistream": "2.1.0",
"pkg-fetch": "1.9.3",
"progress": "2.0.0",
"resolve": "1.3.3",
"simple-bufferstream": "1.0.0"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-eslint": "7.2.3",
"babel-plugin-transform-async-to-generator": "6.24.1",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-register": "6.24.1",
"eslint-config-klopov": "0.11.0",
"json-stable-stringify": "1.0.1",
"mkdirp": "0.5.1",
"rimraf": "2.6.1"
},
"scripts": {
"babel": "node test/rimraf-es5.js && babel lib --out-dir lib-es5",
"lint": "eslint-klopov . || true",
"prepublish": "in-install || (eslint-klopov . && npm run test:nonpm && npm run babel)",
"test": "eslint-klopov . && node test/test.js node0 nonpm && node test/test.js node4 nonpm && node test/test.js node7 nonpm && node test/test.js node6",
"test:nonpm": "node test/test.js node6 nonpm"
},
"eslintConfig": {
"extends": "klopov",
"parser": "babel-eslint",
"rules": {
"max-depth": "off"
}
},
"greenkeeper": {
"emails": false,
"ignore": [
"pkg-fetch"
]
}
}