forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.46 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
{
"name": "@packages/runner",
"version": "0.0.0",
"main": "lib/runner.js",
"private": true,
"scripts": {
"postinstall": "echo '@packages/runner needs: npm run build'",
"prebuild": "npm run check-deps-pre rebuild-node-sass",
"build": "node ./scripts/build-dev.js",
"prebuild-prod": "npm run check-deps-pre",
"build-prod": "node ./scripts/build-prod.js",
"prewatch": "npm run check-deps-pre",
"watch": "node ./scripts/watch.js",
"check-deps": "node ../../scripts/check-deps.js --verbose",
"check-deps-pre": "npm run check-deps -- --prescript",
"clean": "zunder clean",
"clean-deps": "rm -rf node_modules",
"pretest": "npm run check-deps-pre",
"test": "node ./scripts/test.js",
"lint": "bin-up eslint --fix scripts/*.js src/*.js* src/**/*.js*"
},
"files": [
"dist",
"lib"
],
"devDependencies": {
"@cypress/react-tooltip": "0.4.0",
"@cypress/releaser": "0.1.12",
"bin-up": "1.1.0",
"bluebird": "3.5.0",
"chai": "4.2.0",
"chai-enzyme": "1.0.0-beta.1",
"classnames": "2.2.6",
"enzyme": "3.7.0",
"enzyme-adapter-react-16": "1.6.0",
"font-awesome": "4.6.3",
"jsdom": "9.4.1",
"lodash": "4.17.4",
"mobx": "3.1.15",
"mobx-react": "4.2.1",
"prop-types": "15.6.2",
"react": "16.5.2",
"react-dom": "16.5.2",
"react-input-autosize": "2.2.1",
"rebuild-node-sass": "1.1.0",
"sinon": "7.0.0",
"sinon-chai": "3.2.0",
"zunder": "6.2.0"
}
}