forked from opt-out-tools/opt-out
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.96 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": "opt-out",
"version": "1.0.0",
"description": "like adBlocker, but removes misogyny instead of adverts.",
"main": "index.js",
"scripts": {
"webpack:dev": "webpack --mode=development",
"webpack:prod": "webpack --mode=production",
"start:firefox": "concurrently 'npm run webpack:dev -- --watch' 'web-ext run --config=.web-ext-config.js'",
"build:prod": "npm run webpack:prod && web-ext build --config=.web-ext-config.js",
"test": "jest --coverage && npm run webpack:prod && web-ext lint -s dist",
"test:local": "jest",
"lint": "eslint --fix .",
"git:initHook": "scripts/addPreCommitHook.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opt-out-tools/opt-out.git"
},
"author": "Opt Out",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/opt-out-tools/opt-out/issues"
},
"homepage": "https://github.com/opt-out-tools/opt-out#readme",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.9.0",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"chromedriver": "^80.0.1",
"concurrently": "^5.1.0",
"const": "^1.0.0",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"fetch-mock": "^9.4.0",
"geckodriver": "^1.19.1",
"jest": "^25.2.3",
"jest-webextension-mock": "^3.5.0",
"node-fetch": "^2.6.0",
"selenium-webdriver": "^3.6.0",
"web-ext": "^4.1.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"jest": {
"setupFiles": [
"jest-webextension-mock"
]
},
"babel": {
"env": {
"test": {
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
}
}
},
"dependencies": {}
}