forked from zaproxy/zap-hud
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.19 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.19 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
53
54
55
56
57
58
{
"name": "zap-hud",
"version": "1.0.0",
"description": "ZAP Heads Up Display (HUD).",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "ava",
"build": "webpack --config src/webpack/config.dev.js",
"lint": "xo",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.js": [
"xo --fix",
"ava",
"git add"
]
},
"xo": {
"envs": [
"browser",
"serviceworker"
],
"ignores": [
"src/**/hud/libraries/**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/zaproxy/zap-hud.git"
},
"author": "David Scrobonia",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/zaproxy/zap-hud/issues"
},
"homepage": "https://github.com/zaproxy/zap-hud/wiki",
"dependencies": {
"localforage": "^1.5.0",
"vue": "^2.6.8",
"vue-i18n": "^8.9.0"
},
"devDependencies": {
"ava": "^1.3.1",
"css-loader": "^2.1.1",
"lint-staged": "^8.1.5",
"vue-loader": "^15.7.0",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.8",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"xo": "^0.24.0"
}
}