forked from ejoubaud/cypress-browser-extension-plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 loc) · 784 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
{
"name": "cypress-browser-extension-plugin",
"version": "0.1.0",
"description": "End-to-end test your browser extensions with Cypress",
"main": "loader.js",
"scripts": {
"test": "node_modules/cypress/bin/cypress run --browser chrome --reporter junit"
},
"keywords": [
"cypress",
"plugin",
"extension"
],
"author": "Emmanuel Joubaud",
"license": "ISC",
"devDependencies": {
"cypress": "^2.1.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-cypress": "^2.0.1",
"eslint-plugin-import": "^2.10.0"
},
"dependencies": {
"browserify": "^16.2.0",
"browserify-versionify": "^1.0.6",
"chokidar": "^2.0.3",
"fs-extra": "^5.0.0",
"nanoid": "^1.0.2",
"unzip-crx": "^0.2.0"
}
}