forked from vercel/pkg-fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.62 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
{
"name": "pkg-fetch",
"version": "2.5.7",
"description": "Compiles and stores base binaries for pkg",
"main": "lib-es5/index.js",
"license": "MIT",
"repository": "zeit/pkg-fetch",
"bin": {
"pkg-fetch": "lib-es5/bin.js"
},
"files": [
"lib-es5/*.js",
"patches/*",
"places.json"
],
"babel": {
"plugins": [
"transform-async-to-generator",
"transform-runtime"
],
"presets": [
"es2015"
]
},
"dependencies": {
"babel-runtime": "~6.26.0",
"byline": "~5.0.0",
"chalk": "~2.4.1",
"expand-template": "~1.1.1",
"fs-extra": "~6.0.1",
"in-publish": "~2.0.0",
"minimist": "~1.2.0",
"progress": "~2.0.0",
"request": "~2.88.0",
"request-progress": "~3.0.0",
"semver": "~5.6.0",
"unique-temp-dir": "~1.0.0"
},
"devDependencies": {
"ava": "~0.25.0",
"babel-cli": "~6.26.0",
"babel-eslint": "~8.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.26.0",
"eslint-config-klopov": "~0.13.0"
},
"scripts": {
"babel": "node test/rimraf-es5.js && babel lib --out-dir lib-es5",
"bin": "node lib-es5/bin.js",
"lint": "eslint-klopov . || true",
"prepublish": "in-install || (eslint-klopov . && npm test && npm run babel)",
"start": "node lib-es5/upload.js",
"test": "ava"
},
"eslintConfig": {
"extends": "klopov",
"parser": "babel-eslint"
},
"ava": {
"failFast": true,
"files": [
"test/*.test.js"
],
"require": [
"babel-register"
]
}
}