forked from darkreader/darkreader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.78 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "darkreader",
"version": "4.9.26",
"description": "Dark mode for every website",
"scripts": {
"api": "node tasks/build.js --api",
"benchmark-server": "node tests/benchmark-server/index.js",
"build": "node tasks/build.js --release",
"code-style": "eslint --fix \"src/**/*.ts\" \"src/**/*.tsx\" \"tasks/**/*.js\" \"tests/**/*.js\" \"tests/**/*.ts\" \".eslintrc.js\" \"index.d.ts\"",
"debug": "node tasks/build.js --debug",
"debug-watch": "node tasks/build.js --debug --watch",
"lint": "eslint \"src/**/*.ts\" \"src/**/*.tsx\" \"tasks/**/*.js\" \"tests/**/*.ts\" \"tests/**/*.js\" \"index.d.ts\"",
"prepublishOnly": "npm test && npm run api",
"release": "npm test && npm run lint && node tasks/build.js --release",
"test": "jest --config=tests/jest.config.js",
"test:browser": "npm run debug && jest --config=tests/browser/jest.config.js --runInBand",
"test:chrome": "npm run debug && jest --config=tests/browser/jest.config.chrome.js --runInBand",
"test:config": "jest --config=tests/config/jest.config.js",
"test:config:debug": "node --inspect-brk ./node_modules/jest/bin/jest --config=tests/config/jest.config.js --runInBand --no-cache --watch",
"test:coverage": "jest --config=tests/jest.config.js --coverage",
"test:firefox": "npm run debug && jest --config=tests/browser/jest.config.firefox.js --runInBand",
"test:inject": "node tests/inject/run.js",
"test:inject:debug": "node tests/inject/run.js --debug",
"test:utils": "jest --config=tests/utils/jest.config.js",
"test:utils:debug": "node --inspect-brk ./node_modules/jest/bin/jest --config=tests/utils/jest.config.js --runInBand --no-cache --watch"
},
"main": "darkreader.js",
"repository": {
"type": "git",
"url": "https://github.com/darkreader/darkreader.git"
},
"author": "Alexander Shutau <[email protected]> (https://darkreader.org/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/darkreader/darkreader/issues"
},
"keywords": [
"dark-theme",
"dark-mode",
"night-mode",
"darkmode",
"nightmode",
"accessibility",
"eye-care"
],
"browserslist": [
"supports es5",
"not ie > 0",
"not ie_mob > 0",
"not op_mini all",
"not op_mob < 59",
"not android < 50",
"not ios_saf < 6",
"not safari < 9.3",
"not opera < 36",
"not chrome < 49",
"not firefox < 33",
"not edge <= 18"
],
"homepage": "https://darkreader.org/",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/darkreader"
},
"devDependencies": {
"@rollup/plugin-commonjs": "17.0.0",
"@rollup/plugin-node-resolve": "11.0.1",
"@rollup/plugin-replace": "2.3.4",
"@rollup/pluginutils": "4.1.0",
"@types/chrome": "0.0.127",
"@types/jasmine": "3.6.2",
"@types/jest": "26.0.19",
"@types/karma": "5.0.1",
"@types/node": "14.14.14",
"@types/puppeteer-core": "2.0.0",
"@typescript-eslint/eslint-plugin": "4.10.0",
"@typescript-eslint/parser": "4.10.0",
"chokidar": "3.4.3",
"eslint": "7.15.0",
"eslint-plugin-local": "1.0.0",
"fs-extra": "9.0.1",
"globby": "11.0.1",
"jasmine-core": "3.6.0",
"jest": "26.6.3",
"karma": "5.2.3",
"karma-chrome-launcher": "3.1.0",
"karma-coverage": "2.0.3",
"karma-firefox-launcher": "2.1.0",
"karma-jasmine": "4.0.1",
"karma-rollup-preprocessor": "7.0.5",
"karma-safari-launcher": "1.0.0",
"less": "3.13.0",
"malevic": "0.18.6",
"prettier": "2.2.1",
"puppeteer-core": "5.5.0",
"rollup": "2.35.1",
"rollup-plugin-istanbul2": "2.0.2",
"rollup-plugin-typescript2": "0.29.0",
"ts-jest": "26.4.4",
"ts-node": "9.1.1",
"tsconfig-paths": "3.9.0",
"typescript": "4.1.3",
"web-ext": "5.4.1",
"ws": "7.4.1",
"yazl": "2.5.1"
}
}