forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.12 KB
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
{
"name": "@packages/example",
"version": "0.0.0",
"private": true,
"main": "index.js",
"scripts": {
"postinstall": "echo '@packages/example needs: npm run build'",
"check-deps": "node ../../scripts/check-deps.js --verbose",
"check-deps-pre": "npm run check-deps -- --prescript",
"clean-deps": "rm -rf node_modules",
"pretest": "npm run check-deps-pre && npm run lint",
"test": "cross-env NODE_ENV=test mocha",
"test-e2e": "cypress run",
"prebuild": "npm run check-deps-pre",
"build": "node ./bin/build.js && gulp build",
"predeploy": "npm run build",
"deploy": "gulp deploy",
"lint": "bin-up eslint --fix *.js bin/*.js lib/*.js test/*.js"
},
"files": [
"cypress",
"lib"
],
"dependencies": {
"bluebird": "3.5.3",
"glob": "7.1.3"
},
"devDependencies": {
"bin-up": "1.1.0",
"chai": "3.5.0",
"cross-env": "5.2.0",
"cypress-example-kitchensink": "1.5.0",
"gulp": "3.9.1",
"gulp-clean": "0.4.0",
"gulp-gh-pages-will": "0.5.5",
"gulp-rev-all": "0.8.24",
"mocha": "2.5.3",
"run-sequence": "1.2.2",
"shelljs": "0.7.8"
}
}