forked from vercel/pkg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.95 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
73
74
75
76
77
78
79
80
{
"name": "pkg",
"version": "4.3.8-canary.0",
"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": [
[
"env",
{
"targets": {
"node": "4"
}
}
]
]
},
"dependencies": {
"@babel/parser": "~7.4.3",
"babel-runtime": "~6.26.0",
"chalk": "~2.4.2",
"escodegen": "~1.11.1",
"fs-extra": "~7.0.1",
"globby": "~9.2.0",
"into-stream": "~5.1.0",
"minimist": "~1.2.0",
"multistream": "~2.1.1",
"pkg-fetch": "~2.5.8",
"progress": "~2.0.3",
"resolve": "1.6.0",
"stream-meter": "~1.0.4"
},
"devDependencies": {
"babel-cli": "~6.26.0",
"babel-eslint": "~10.0.1",
"babel-plugin-transform-async-to-generator": "~6.24.1",
"babel-plugin-transform-runtime": "~6.23.0",
"babel-preset-env": "~1.7.0",
"babel-register": "~6.26.0",
"eslint-config-klopov": "~0.13.0",
"json-stable-stringify": "~1.0.1",
"mkdirp": "~0.5.1",
"rimraf": "~2.6.3"
},
"scripts": {
"babel": "node test/rimraf-es5.js && babel lib --out-dir lib-es5",
"lint": "eslint-klopov . || true",
"prepare": "npm run babel",
"prepublishOnly": "eslint-klopov . && npm run test:no-npm",
"test": "eslint-klopov . && npm run babel && node test/test.js node10 no-npm && node test/test.js node8 no-npm && node test/test.js node6 no-npm && node test/test.js host only-npm",
"test:no-npm": "node test/test.js host no-npm"
},
"eslintConfig": {
"extends": "klopov",
"parser": "babel-eslint",
"rules": {
"wrap-iife": "off"
}
},
"greenkeeper": {
"emails": false,
"ignore": [
"pkg-fetch"
]
}
}