forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.16 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
{
"name": "cypress",
"version": "0.0.0",
"main": "index.js",
"private": true,
"bin": {
"cypress": "bin/cypress"
},
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"postinstall": "node ./scripts/post-install.js",
"pretest": "npm run check-deps-pre",
"test": "npm run test-unit",
"pretest-unit": "npm run check-deps-pre",
"test-unit": "npm run unit",
"pretest-watch": "npm run check-deps-pre",
"test-watch": "npm run unit -- --watch",
"check-deps": "node ../scripts/check-deps.js --verbose",
"check-deps-pre": "npm run check-deps -- --prescript",
"test-dependencies": "npm run check-deps && dependency-check . --no-dev",
"test-debug": "node --inspect --debug-brk $(bin-up _mocha)",
"test-cov": "nyc npm run unit",
"unit": "BLUEBIRD_DEBUG=1 NODE_ENV=test bin-up mocha --reporter mocha-multi-reporters --reporter-options configFile=../mocha-reporter-config.json",
"lint": "bin-up eslint --fix *.js scripts/*.js bin/* lib/*.js lib/**/*.js test/*.js test/**/*.js",
"dtslint": "dtslint types",
"prebuild": "npm run test-dependencies && node ./scripts/start-build.js",
"build": "node ./scripts/build.js",
"prerelease": "npm run build",
"release": "cd build && releaser --no-node --no-changelog",
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";"
},
"nyc": {
"exclude": [
"test",
"scripts"
]
},
"types": "types",
"dependencies": {
"@cypress/listr-verbose-renderer": "0.4.1",
"@cypress/xvfb": "1.2.4",
"arch": "2.1.1",
"bluebird": "3.5.0",
"cachedir": "1.3.0",
"chalk": "2.4.2",
"check-more-types": "2.24.0",
"commander": "2.15.1",
"common-tags": "1.8.0",
"debug": "3.2.6",
"execa": "0.10.0",
"executable": "4.1.1",
"extract-zip": "1.6.7",
"fs-extra": "4.0.1",
"getos": "3.1.1",
"glob": "7.1.3",
"is-ci": "1.2.1",
"is-installed-globally": "0.1.0",
"lazy-ass": "1.6.0",
"listr": "0.12.0",
"lodash": "4.17.11",
"log-symbols": "2.2.0",
"minimist": "1.2.0",
"moment": "2.24.0",
"ramda": "0.24.1",
"request": "2.88.0",
"request-progress": "0.4.0",
"supports-color": "5.5.0",
"tmp": "0.1.0",
"url": "0.11.0",
"yauzl": "2.10.0"
},
"devDependencies": {
"@cypress/sinon-chai": "1.1.0",
"@types/blob-util": "1.3.3",
"@types/bluebird": "3.5.18",
"@types/chai": "4.0.8",
"@types/chai-jquery": "1.1.38",
"@types/jquery": "3.3.6",
"@types/lodash": "4.14.122",
"@types/minimatch": "3.0.3",
"@types/mocha": "2.2.44",
"@types/sinon": "7.0.0",
"@types/sinon-chai": "3.2.2",
"babel-cli": "6.26.0",
"babel-preset-es2015": "6.24.1",
"bin-up": "1.2.0",
"chai": "3.5.0",
"chai-as-promised": "7.1.1",
"chai-string": "1.4.0",
"dependency-check": "3.3.0",
"dtslint": "0.7.1",
"execa-wrap": "1.4.0",
"mock-fs": "4.9.0",
"mocked-env": "1.2.4",
"nock": "9.6.1",
"nyc": "13.3.0",
"proxyquire": "2.1.0",
"shelljs": "0.8.3",
"sinon": "7.2.2",
"snap-shot-it": "7.4.4",
"spawn-mock": "1.0.0"
},
"files": [
"bin",
"lib",
"index.js",
"types/**/*.d.ts"
]
}