forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
159 lines (159 loc) · 5.69 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "cypress",
"productName": "Cypress",
"version": "3.1.0",
"description": "Cypress.io end to end testing tool",
"private": true,
"engines": {
"node": ">=8.2.1"
},
"scripts": {
"prestart": "npm run check-deps-pre",
"start": "node ./cli/bin/cypress open --dev --global",
"cypress:open": "node ./cli/bin/cypress open --dev --global",
"cypress:run": "node ./cli/bin/cypress run --dev",
"cypress:open:debug": "node ./scripts/debug.js cypress:open",
"cypress:run:debug": "node ./scripts/debug.js cypress:run",
"dev": "node ./scripts/start.js",
"dev-debug": "node ./scripts/debug.js dev",
"watch": "npm run all watch",
"test-debug-package": "node ./scripts/test-debug-package.js",
"jscodeshift": "jscodeshift -t ./node_modules/js-codemod/transforms/arrow-function-arguments.js",
"decaffeinate": "decaffeinate --use-cs2 --loose",
"decaffeinate-bulk": "bulk-decaffeinate",
"check-deps": "node ./scripts/check-deps.js --verbose",
"check-deps-pre": "node ./scripts/check-deps.js --verbose --prescript",
"prebuild": "npm run check-deps-pre",
"build": "npm run all build",
"all": "node ./scripts/run.js",
"test": "echo '⚠️ This root monorepo is only for local development and new contributions. There are no tests.'",
"link": "node ./scripts/link-packages.js",
"install-filtered": "npm run all install -- --package $(node ./scripts/check-deps.js --list)",
"postinstall": "echo 'root postinstall' && npm run link && npm run all install && npm run build",
"clean-deps": "npm run all clean-deps && rm -rf node_modules",
"docker": "./scripts/run-docker-local.sh",
"lint-js": "eslint --fix scripts/*.js packages/ts/*.js cli/*.js cli/**/*.js",
"lint-coffee": "coffeelint scripts/**/*.coffee",
"lint": "npm run lint-js && npm run lint-coffee",
"pretest": "npm run lint && npm run all lint && npm run test-scripts",
"precommit": "lint-staged",
"precommit-lint": "eslint --fix",
"stop-only": "stop-only --folder packages --skip .cy,.publish,.projects,node_modules,dist,dist-test,fixtures,lib,bower_components,spec_helper.coffee",
"warn-only": "stop-only --warn packages --skip .cy,.publish,.projects,node_modules,dist,dist-test,fixtures,lib,bower_components,spec_helper.coffee",
"bump": "node ./scripts/binary.js bump",
"set-next-ci-version": "node ./scripts/binary.js setNextVersion",
"binary-build": "node ./scripts/binary.js build",
"binary-zip": "node ./scripts/binary.js zip",
"binary-upload": "node ./scripts/binary.js upload",
"binary-deploy": "node ./scripts/binary.js deploy",
"binary-purge": "node ./scripts/binary.js purge-version",
"binary-deploy-linux": "./scripts/build-linux-binary.sh",
"binary-release": "node ./scripts/binary.js release",
"test-scripts": "mocha --reporter spec scripts/unit/*spec.js",
"test-mocha": "mocha --reporter spec scripts/spec.js",
"test-mocha-snapshot": "mocha scripts/mocha-snapshot-spec.js",
"check-node-version": "node scripts/check-node-version.js"
},
"lint-staged": {
"*.js": [
"precommit-lint"
]
},
"devDependencies": {
"@cypress/bumpercar": "1.4.0",
"@cypress/env-or-json-file": "^2.0.0",
"@cypress/npm-run-all": "^4.0.4",
"@cypress/questions-remain": "^1.0.1",
"ansi-styles": "^3.1.0",
"ascii-table": "0.0.9",
"babel-eslint": "^10.0.1",
"bluebird": "^3.4.5",
"bluebird-retry": "^0.11.0",
"bulk-decaffeinate": "^3.3.1",
"chai": "^4.0.2",
"chalk": "^2.0.1",
"check-dependencies": "1.1.0",
"check-more-types": "^2.24.0",
"cloudflare-cli": "^2.1.0",
"coffeelint": "^1.16.0",
"commit-message-install": "^1.10.0",
"common-tags": "^1.8.0",
"console.table": "^0.9.1",
"debug": "3.1.0",
"decaffeinate": "^4.8.8",
"del": "^3.0.0",
"electron-osx-sign": "^0.4.6",
"eslint": "4.19.1",
"eslint-plugin-cypress": "^2.0.1",
"eslint-plugin-cypress-dev": "^1.1.1",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-react": "^7.3.0",
"execa": "^0.8.0",
"execa-wrap": "^1.1.0",
"filesize": "^3.5.10",
"find-package-json": "^1.1.0",
"fs-extra": "^7.0.0",
"gift": "^0.10.0",
"gulp": "^3.9.1",
"gulp-awspublish": "^3.3.0",
"gulp-coffee": "^2.3.4",
"gulp-debug": "^3.1.0",
"gulp-rename": "^1.2.2",
"gulp-typescript": "^3.1.7",
"human-interval": "^0.1.6",
"husky": "^0.14.3",
"inquirer": "^3.1.1",
"js-codemod": "cpojer/js-codemod#29dafed",
"jscodemods": "cypress-io/jscodemods#01b546e",
"jscodeshift": "^0.5.1",
"konfig": "^0.2.1",
"lazy-ass": "^1.6.0",
"lint-staged": "^4.1.3",
"lodash": "4.17.10",
"make-empty-github-commit": "^1.2.0",
"mocha": "^3.5.0",
"mocha-banner": "^1.1.1",
"mocha-junit-reporter": "1.17.0",
"mocha-multi-reporters": "^1.1.5",
"obfuscator": "^0.5.4",
"parse-github-repo-url": "^1.4.1",
"plist": "^2.1.0",
"pluralize": "^6.0.0",
"prefixed-list": "^1.0.1",
"print-arch": "^1.0.0",
"ramda": "^0.24.1",
"shelljs": "^0.7.8",
"snap-shot-it": "^5.0.1",
"stop-only": "2.1.0",
"strip-ansi": "4.0.0",
"terminal-banner": "^1.0.0",
"typescript": "^2.3.4",
"vagrant": "0.0.1",
"vinyl-paths": "^2.1.0"
},
"author": "Brian Mann",
"license": "MIT",
"homepage": "https://github.com/cypress-io/cypress",
"repository": {
"type": "git",
"url": "https://github.com/cypress-io/cypress.git"
},
"bugs": {
"url": "https://github.com/cypress-io/cypress/issues"
},
"keywords": [
"browser",
"cypress",
"cypress.io",
"automation",
"end-to-end",
"e2e",
"integration",
"mocks",
"test",
"testing",
"runner",
"spies",
"stubs"
]
}