forked from darkreader/darkreader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.84 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
108
{
"name": "darkreader",
"version": "4.9.34",
"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 --cache --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:ci": "jest --config=tests/jest.config.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 <darkreaderapp@gmail.com> (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-node-resolve": "13.0.0",
"@rollup/plugin-replace": "2.4.2",
"@rollup/pluginutils": "4.1.0",
"@types/chrome": "0.0.154",
"@types/jasmine": "3.7.8",
"@types/jest": "26.0.24",
"@types/karma": "6.3.1",
"@types/node": "16.0.0",
"@typescript-eslint/eslint-plugin": "4.28.2",
"@typescript-eslint/parser": "4.28.2",
"chokidar": "3.5.2",
"eslint": "7.30.0",
"eslint-plugin-import": "2.24.0",
"eslint-plugin-local": "1.0.0",
"fs-extra": "10.0.0",
"globby": "11.0.4",
"jasmine-core": "3.8.0",
"jest": "27.0.6",
"karma": "6.3.4",
"karma-chrome-launcher": "3.1.0",
"karma-coverage": "2.0.3",
"karma-firefox-launcher": "2.1.1",
"karma-jasmine": "4.0.1",
"karma-rollup-preprocessor": "7.0.7",
"karma-safari-launcher": "1.0.0",
"less": "4.1.1",
"malevic": "0.18.6",
"prettier": "2.3.2",
"puppeteer-core": "10.1.0",
"rollup": "2.52.8",
"rollup-plugin-istanbul2": "2.0.2",
"rollup-plugin-typescript2": "0.30.0",
"ts-jest": "27.0.3",
"ts-node": "10.0.0",
"tsconfig-paths": "3.10.1",
"tslib": "2.3.0",
"typescript": "4.3.5",
"web-ext": "6.2.0",
"ws": "7.5.2",
"yazl": "2.5.1"
}
}