forked from darkreader/darkreader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.47 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
{
"name": "darkreader",
"version": "4.9.21",
"description": "Dark theme for every website",
"scripts": {
"api": "node tasks/build.js --api",
"benchmark-server": "node tests/benchmark-server/index.js",
"code-style": "eslint --fix \"src/**/*.ts\" \"src/**/*.tsx\" \"tasks/**/*.js\" \"tests/**/*.ts\" \"tests/**/*.js\" \"index.d.ts\"",
"debug": "node tasks/build.js --debug",
"debug-watch": "node tasks/build.js --debug --watch",
"prepublishOnly": "npm test && npm run api",
"release": "npm test && node tasks/build.js --release",
"test": "npm run test:config && npm run test:inject && npm run test:utils",
"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:inject": "jest --config=tests/inject/jest.config.js",
"test:inject:debug": "node --inspect-brk ./node_modules/jest/bin/jest --config=tests/inject/jest.config.js --runInBand --no-cache --watch",
"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/alexanderby/darkreader.git"
},
"author": "Alexander Shutau <[email protected]> (https://darkreader.org/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexanderby/darkreader/issues"
},
"homepage": "https://darkreader.org/",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/darkreader"
},
"devDependencies": {
"@rollup/plugin-commonjs": "15.1.0",
"@rollup/plugin-node-resolve": "9.0.0",
"@rollup/plugin-replace": "2.3.3",
"@rollup/pluginutils": "4.0.0",
"@types/chrome": "0.0.124",
"@types/jest": "26.0.14",
"@types/node": "14.11.2",
"@typescript-eslint/eslint-plugin": "4.3.0",
"@typescript-eslint/parser": "4.3.0",
"chokidar": "3.4.2",
"eslint": "7.10.0",
"eslint-plugin-local": "1.0.0",
"fs-extra": "9.0.1",
"globby": "11.0.1",
"jest": "26.5.0",
"less": "3.12.2",
"malevic": "0.18.6",
"prettier": "2.1.2",
"rollup": "2.28.2",
"rollup-plugin-typescript2": "0.27.3",
"ts-jest": "26.4.1",
"ts-node": "9.0.0",
"tsconfig-paths": "3.9.0",
"typescript": "4.0.3",
"ws": "7.3.1",
"yazl": "2.5.1"
}
}