-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.46 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
53
54
55
56
57
58
59
60
61
62
{
"name": "@victal/cypress-extensions-plugin",
"version": "0.1.7",
"description": "End-to-end test your browser extensions with Cypress",
"main": "loader.js",
"files": [
"loader.js",
"commands.js",
"helpers.js",
"lib/**",
"templates/**",
"package-lock.json",
"CHANGELOG.md"
],
"scripts": {
"test": "cypress run --browser chrome --headed",
"lint": "eslint .",
"cy:open": "cypress open",
"semantic-release": "semantic-release"
},
"keywords": [
"cypress",
"plugin",
"extension"
],
"author": "Emmanuel Joubaud",
"contributors": [
{
"name": "Eli Stone",
"url": "https://github.com/elistone"
},
{
"name": "Guilherme Victal",
"url": "https://github.com/victal"
}
],
"license": "ISC",
"devDependencies": {
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.2",
"cypress": "^13.8.1",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"semantic-release": "^20.1.0"
},
"dependencies": {
"browserify": "^17.0.0",
"browserify-versionify": "^1.0.6",
"chokidar": "^3.5.3",
"fs-extra": "^11.1.0",
"nanoid": "^3.3.4",
"unzip-crx": "^0.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/victal/cypress-extensions-plugin.git"
}
}