forked from Sean-Der/fail2web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (64 loc) · 1.41 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
63
64
65
66
{
"name": "fail2web",
"version": "0.0.1",
"description": "fail2web is an fail2ban GUI powered by fail2rest",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "watchify -t brfs js/fail2web.js -o web/bundle.js",
"build": "browserify -t brfs js/fail2web.js -o web/bundle.js"
},
"repository": {
"type": "git",
"url": "github.com/Sean-Der/fail2web.git"
},
"keywords": [
"fail2ban"
],
"author": "Sean-Der",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sean-Der/fail2web/issues"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browser": {
"angular-ui": "./libs/ui-bootstrap-tpls-0.11.0.min.js",
"angular-animate": "./libs/angular-animate-1.2.19.min.js",
"angular-charts": "./libs/angular-charts-0.2.4.min.js"
},
"browserify-shim": {
"angular-ui": {
"exports": null,
"depends": [
"angular"
]
},
"angular-animate": {
"exports": null,
"depends": [
"angular"
]
},
"angular-charts": {
"exports": null,
"depends": [
"d3"
]
}
},
"devDependencies": {
"insert-css": "^0.2.0",
"watchify": "^0.10.2",
"lodash": "^2.4.1",
"brfs": "1.0.2",
"angular": "^1.2.19",
"browserify-shim": "^3.6.0",
"bootstrap": "^3.2.0",
"browserify": "^4.2.1",
"d3": "^3.4.10"
}
}