forked from vercel/pkg-fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.78 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.78 KB
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
{
"name": "pkg-fetch",
"version": "2.6.8",
"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": [
"@babel/plugin-transform-async-to-generator",
"@babel/plugin-transform-runtime"
],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "4"
}
}
]
]
},
"dependencies": {
"@babel/runtime": "^7.9.2",
"byline": "^5.0.0",
"chalk": "^3.0.0",
"expand-template": "^2.0.3",
"fs-extra": "^8.1.0",
"minimist": "^1.2.5",
"progress": "^2.0.3",
"request": "^2.88.0",
"request-progress": "^3.0.0",
"semver": "^6.3.0",
"unique-temp-dir": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"ava": "^2.4.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-klopov": "^1.0.2"
},
"scripts": {
"babel": "node test/rimraf-es5.js && babel lib --out-dir lib-es5",
"bin": "node lib-es5/bin.js",
"lint": "eslint-klopov . || true",
"prepare": "npm run babel",
"prepublishOnly": "eslint-klopov . && npm test",
"start": "node lib-es5/upload.js",
"test": "ava"
},
"eslintConfig": {
"extends": "klopov",
"parser": "babel-eslint"
},
"ava": {
"failFast": true,
"files": [
"test/*.test.js"
],
"require": [
"@babel/register"
]
}
}