-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
{
"name": "@cypress/core-extension",
"version": "0.3.6",
"description": "Cypress Chrome Extension",
"main": "index.js",
"scripts": {
"start": "npm run build && npm run watch",
"watch": "gulp watch",
"build": "gulp build",
"test": "NODE_ENV=test mocha",
"prerelease": "npm run build",
"release": "releaser"
},
"files": [
"app",
"dist",
"lib",
"theme"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cypress-io/cypress-core-extension.git"
},
"author": "Brian Mann",
"license": "MIT",
"bugs": {
"url": "https://github.com/cypress-io/cypress-core-extension/issues"
},
"homepage": "https://github.com/cypress-io/cypress-core-extension#readme",
"devDependencies": {
"@cypress/core-icons": "0.4.0",
"@cypress/core-releaser": "0.1.8",
"@cypress/core-socket": "0.1.0",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"coffeeify": "^2.0.1",
"fs-extra": "^0.26.7",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-rename": "^1.2.2",
"mocha": "^2.4.5",
"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",
"coffee-script": "^1.10.0",
"lodash": "^4.11.2"
}
}