This repository has been archived by the owner on Mar 2, 2020. It is now read-only.
forked from vercel/vercel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 2.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "now",
"version": "0.37.0",
"description": "Realtime global deployments",
"repository": "zeit/now-cli",
"main": "./build/lib/index",
"license": "MIT",
"files": [
"build"
],
"scripts": {
"dev": "gulp",
"build": "gulp compile",
"test": "xo && ava",
"pretest": "npm run build",
"prepublish": "npm run build",
"pack": "pkg . --out-dir out"
},
"pkg": {
"scripts": "build/**/*"
},
"ava": {
"failFast": true,
"files": [
"test/*.js"
],
"require": [
"babel-register"
]
},
"greenkeeper": {
"emails": false
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-runtime",
"transform-async-to-generator"
]
},
"xo": {
"esnext": true,
"space": true,
"semicolon": false,
"ignores": [
"build/**",
"out/**",
"test/_fixtures/**"
],
"rules": {
"import/no-unresolved": 0,
"ava/no-ignored-test-files": 0,
"max-depth": 0,
"no-use-before-define": 0,
"complexity": 0,
"unicorn/no-process-exit": 0,
"no-control-regex": 0,
"no-case-declarations": 0,
"no-useless-escape": 0
}
},
"bin": {
"now": "./build/bin/now"
},
"dependencies": {
"ansi-escapes": "1.4.0",
"arr-flatten": "1.0.1",
"array-unique": "0.3.2",
"async-retry": "0.2.1",
"babel-runtime": "6.20.0",
"bytes": "2.4.0",
"chalk": "1.1.3",
"copy-paste": "1.3.0",
"cross-spawn": "5.0.1",
"docker-file-parser": "0.1.0",
"download": "5.0.2",
"email-prompt": "0.2.0",
"email-validator": "1.0.7",
"fs-promise": "1.0.0",
"glob": "7.1.1",
"graceful-fs": "4.1.11",
"ignore": "3.2.0",
"ini": "1.3.4",
"is-url": "1.2.2",
"minimist": "1.2.0",
"ms": "0.7.2",
"node-fetch": "1.6.3",
"node-version": "1.0.0",
"ora": "0.4.0",
"progress": "1.1.8",
"psl": "1.1.15",
"resumer": "0.0.0",
"semver-compare": "1.0.0",
"socket.io-client": "1.7.2",
"spdy": "3.4.4",
"split-array": "1.0.1",
"text-table": "0.2.0",
"tmp-promise": "1.0.2"
},
"devDependencies": {
"alpha-sort": "2.0.0",
"ava": "0.17.0",
"babel-plugin-transform-async-to-generator": "6.16.0",
"babel-plugin-transform-runtime": "6.15.0",
"babel-preset-es2015": "6.18.0",
"babel-register": "6.18.0",
"del": "2.2.2",
"estraverse-fb": "1.3.1",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-cached": "1.1.1",
"gulp-ext": "1.0.0",
"gulp-task-listing": "1.0.1",
"pkg": "3.0.0-beta.22",
"xo": "0.17.1"
}
}