-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.93 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
{
"name": "github-tada",
"version": "2.1.0",
"description": "Browse Github issues by reaction",
"author": "Moritz Jacobs <[email protected]>",
"license": "MIT",
"scripts": {
"build": "run-s build:clean build:webpack build:webext build:publishSrc",
"build:clean": "run-p build:clean:dist build:clean:artifacts",
"build:clean:artifacts": "rimraf ./web-ext-artifacts",
"build:clean:dist": "rimraf dist",
"build:publishSrc": "zip -r ../github-tada-src.zip ./ -x ./.scripts/\\* ./dist/\\* ./node_modules/\\* ./web-ext-artifacts/\\* ./.git/\\*",
"build:webext": "web-ext build -o",
"build:webpack": "webpack",
"dev": "run-p dev:webpack dev:chrome dev:ff",
"dev:chrome": "web-ext run -t chromium",
"dev:ff": "web-ext run",
"dev:webpack": "webpack -w ",
"format:fix": "eslint ./src --fix",
"format:scripts": "scriptlint --fix",
"other:updates": "updtr",
"predev": "run-s build",
"start": "run-s dev",
"test": "run-s test:unit test:lint test:types test:scripts",
"test:lint": "eslint ./src",
"test:scripts": "scriptlint",
"test:types": "tsc -p tsconfig.json --noEmit true",
"test:unit": "jest",
"test:watch": "jest --watch"
},
"scriptlint": {
"strict": true
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"eslint-config-peerigon": "^31.0.2",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jest": "^27.1.0",
"mini-css-extract-plugin": "^2.2.2",
"node-sass": "^6.0.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"sass-loader": "^12.1.0",
"scriptlint": "^2.1.7",
"style-loader": "^3.2.1",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"typescript": "^4.4.2",
"updtr": "^4.0.0",
"web-ext": "^6.3.0",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0"
},
"dependencies": {}
}