forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 988 Bytes
/
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
{
"name": "@packages/example",
"version": "0.0.0",
"private": true,
"main": "index.js",
"scripts": {
"postinstall": "echo '@packages/example needs: yarn build'",
"clean-deps": "rm -rf node_modules",
"test": "yarn test-unit",
"test-e2e": "cypress run",
"test-debug": "yarn test-unit --inspect-brk=5566",
"test-unit": "cross-env NODE_ENV=test mocha",
"test-watch": "yarn test-unit --watch",
"build": "node ./bin/build.js && gulp build",
"build-prod": "yarn build",
"predeploy": "yarn build",
"deploy": "gulp deploy"
},
"files": [
"cypress",
"lib"
],
"dependencies": {
"bluebird": "3.5.3",
"glob": "7.1.3"
},
"devDependencies": {
"chai": "3.5.0",
"cross-env": "6.0.3",
"cypress-example-kitchensink": "1.9.1",
"gulp": "4.0.2",
"gulp-clean": "0.4.0",
"gulp-gh-pages": "0.6.0-6",
"gulp-rev-all": "2.0.2",
"mocha": "2.5.3",
"resolve-pkg": "2.0.0",
"shelljs": "0.8.3"
}
}