-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.51 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
{
"name": "yay-filter",
"version": "0.2.1",
"description": "Yet another YouTube comment filter",
"devDependencies": {
"@types/chrome": "0.0.127",
"@types/jest": "^26.0.19",
"@types/jsdom": "^16.2.5",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"coveralls": "^3.1.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"jest": "^26.6.3",
"jest-chrome": "^0.7.0",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.12",
"typescript": "^4.1.3",
"webextension-polyfill": "^0.7.0",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0"
},
"scripts": {
"clean": "scripts/prebuild.sh",
"prebuild": "npm run clean",
"build": "NODE_ENV=production webpack --config webpack.config.js && scripts/postbuild.sh",
"prewatch": "npm run clean",
"watch": "NODE_ENV=development webpack --config webpack.config.js -w",
"test": "jest",
"coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mogproject/yay-filter.git"
},
"author": "Yosuke Mizutani <mogproj@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mogproject/yay-filter/issues"
},
"homepage": "https://github.com/mogproject/yay-filter"
}