-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
76 lines (76 loc) · 2.54 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
75
76
{
"name": "Total-Suspender-webextension",
"version": "3.7.0",
"description": "A minimalistic web extension for firefox that suspends natively (with tabs.discard) not-active tabs.",
"homepage": "https://github.com/k5md/Total-Suspender-webextension",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"lint": "web-ext lint --config .web-ext-config.js",
"build-dev": "npx rimraf ./dist && npx webpack --config ./webpack.dev.js",
"build-prod": "npx rimraf ./dist && npx webpack --config ./webpack.prod.js",
"browser": "web-ext run --config .web-ext-config.js",
"pack": "npm run build-prod && web-ext build --config .web-ext-config.js",
"watch": "npm run build-dev && concurrently \"npx webpack --config ./webpack.dev.js --watch\" \"web-ext run --config .web-ext-config.js\""
},
"jest": {
"setupFiles": [
"jest-webextension-mock"
],
"testURL": "http://localhost/"
},
"author": "k5md",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^9.5.1",
"babel-core": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-jsx": "^2.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"clean-webpack-plugin": "^0.1.17",
"concurrently": "^4.1.0",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-jsx": "0.0.2",
"extract-loader": "^1.0.1",
"extricate-loader": "^2.0.0",
"file-loader": "^1.1.5",
"html-loader": "^0.5.1",
"imports-loader": "^0.7.1",
"interpolate-loader": "^2.0.0",
"jest": "^22.4.4",
"jest-webextension-mock": "^3.5.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"precss": "^4.0.0",
"prop-loader": "^1.0.0",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"spawn-loader": "^4.0.0",
"style-loader": "^0.23.1",
"web-ext": "^2.9.3",
"webextension-polyfill": "^0.2.1"
},
"dependencies": {
"babel-minify-webpack-plugin": "^0.2.0",
"babel-polyfill": "^6.26.0",
"bootstrap": "^4.3.1",
"extract-text-webpack-plugin": "^3.0.2",
"jquery": "^3.4.1",
"lodash": "^4.17.11",
"melanke-watchjs": "^1.5.0",
"mithril": "^1.1.6",
"popper.js": "^1.15.0",
"webpack": "^3.12.0",
"webpack-merge": "^4.2.1"
}
}