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
52 lines (52 loc) · 1.49 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.49 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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@packages/extension",
"version": "0.0.0",
"private": true,
"main": "index.js",
"scripts": {
"postinstall": "echo '@packages/extension needs: npm run build'",
"prewatch": "npm run check-deps-pre",
"watch": "gulp watch",
"prebuild": "npm run check-deps-pre",
"build": "gulp build",
"prebuild-prod": "npm run check-deps-pre",
"build-prod": "gulp build",
"pretest": "npm run check-deps-pre",
"test": "cross-env NODE_ENV=test bin-up mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
"pretest-watch": "npm run check-deps-pre",
"test-watch": "npm run test -- --watch",
"check-deps": "node ../../scripts/check-deps.js --verbose",
"check-deps-pre": "npm run check-deps -- --prescript",
"clean": "gulp clean",
"clean-deps": "rm -rf node_modules"
},
"files": [
"app",
"dist",
"lib",
"theme"
],
"devDependencies": {
"@cypress/core-socket": "0.1.0",
"@cypress/icons": "0.5.4",
"@cypress/releaser": "0.1.12",
"bin-up": "^1.1.0",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"coffeeify": "^2.0.1",
"cross-env": "^5.0.5",
"eol": "^0.9.1",
"fs-extra": "^0.26.7",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-rename": "^1.2.2",
"run-sequence": "^1.1.5",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"bluebird": "^3.3.5",
"lodash": "^4.11.2"
}
}