-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.67 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
{
"name": "github-pull-request-counter",
"version": "1.0.11",
"description": "A chrome extension to remove mental load when working with pull requests.",
"repository": "git@github.com:renuo/github-pull-request-counter.git",
"author": "Renuo AG (https://www.renuo.ch)",
"license": "MIT",
"scripts": {
"start": "webpack --watch --config webpack.dev.js",
"build": "webpack --config webpack.dev.js",
"build-production": "webpack --config webpack.prod.js",
"build-testing": "webpack --config webpack.testing.js",
"test": "npm run build-testing; jest",
"lint": "tslint -c tslint.json 'src/**/*.ts' '__test__/**/*.ts'",
"fix": "tslint -c tslint.json 'src/**/*.ts' '__test__/**/*.ts' --fix"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.0",
"@types/chrome": "^0.0.136",
"@types/expect-puppeteer": "^4.4.5",
"@types/jest": "^26.0.22",
"@types/jest-environment-puppeteer": "^4.4.1",
"@types/node-fetch": "^2.5.10",
"@types/puppeteer": "^7.0.4",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^5.2.4",
"dotenv-webpack": "^7.0.2",
"html-webpack-plugin": "^5.3.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-puppeteer": "^5.0.1",
"jest-webextension-mock": "^3.7.9",
"mockdate": "^3.0.5",
"node-fetch": "^2.6.7",
"puppeteer": "^9.1.1",
"puppeteer-core": "^9.1.1",
"sass": "^1.32.11",
"sass-lint": "^1.13.1",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.5",
"ts-loader": "^9.4.2",
"tslint": "^6.1.3",
"typescript": "^4.7.4",
"webpack": "^5.34.0",
"webpack-cli": "^4.6.0"
}
}