forked from enakada/foxy-manga-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.98 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
67
68
69
70
71
72
73
74
{
"name": "foxy-manga-reader",
"description": "Track manga releases from popular websites.",
"version": "0.5.2",
"license": "MPL-2.0",
"author": "Edson Nakada",
"homepage": "https://github.com/enakada/foxy-manga-reader",
"repository": {
"type": "git",
"url": "https://github.com/enakada/foxy-manga-reader"
},
"bugs": {
"url": "https://github.com/enakada/foxy-manga-reader/issues"
},
"scripts": {
"build": "gulp",
"watch": "gulp watch",
"clean": "gulp clean",
"eslint": "node node_modules/eslint/bin/eslint.js src/**",
"test": "mocha --compilers js:babel-core/register --require babel-polyfill --require jsdom-global/register",
"start": "web-ext run -s dist/ --start-url about:debugging --start-url about:addons --verbose",
"lint": "web-ext lint -s dist/",
"pack": "web-ext build -s dist/",
"sign": "web-ext sign -s dist/"
},
"pre-commit": [
"eslint",
"test"
],
"dependencies": {
"chart.js": "^2.7.1",
"localforage": "^1.5.5",
"moment": "^2.19.3"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"bootstrap": "^4.0.0-alpha.6",
"chai": "^4.1.2",
"eslint": "^4.12.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-mocha": "^4.11.0",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-sass": "^3.1.0",
"jquery": "^3.2.1",
"jsdom": "^11.5.1",
"jsdom-global": "^3.0.2",
"mocha": "^3.3.0",
"open-iconic": "^1.1.1",
"pre-commit": "^1.2.2",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-stream": "^1.19.0",
"sinon": "^4.1.3",
"vinyl-source-stream": "^1.1.0",
"web-ext": "^2.2.2",
"whatwg-fetch": "^2.0.3"
},
"babel": {
"presets": [
[
"env",
{
"firefox": 52
}
]
]
}
}