-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
108 lines (108 loc) · 3.38 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": "kan-colle-widget",
"version": "3.2.84",
"description": "『艦これ』をちょっとだけ快適にするやつ",
"engines": {
"node": "18.12.1",
"npm": "8.19.2"
},
"scripts": {
"postinstall": "rm -f node_modules/public-encrypt/test/*.pem && ts-node --script-mode ./scripts/postinstall.ts",
"clean": "rm -rf dest/js dest/css",
"start": "NODE_ENV=development webpack --progress --watch",
"build": "npm run clean && webpack && rm dest/css/*.js",
"announce": "ts-node --script-mode ./scripts/announce.ts",
"tweet": "ts-node --script-mode ./scripts/tweet.ts",
"pack": "./scripts/pack.sh",
"lint": "eslint src tests scripts/*.ts",
"should-release": "ts-node --script-mode ./scripts/should-release.ts",
"create-release-pr": "ts-node --script-mode ./scripts/create-release-pr.ts",
"webstore-publish": "ts-node --script-mode ./scripts/webstore-publish.ts ./release/kcwidget.zip",
"test": "jest --coverage",
"test:scripts": "tsc ./scripts/*.ts --outDir ./scripts/out"
},
"repository": "git+https://github.com/otiai10/kanColleWidget.git",
"author": "otiai10",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/otiai10/kanColleWidget/issues"
},
"homepage": "https://github.com/otiai10/kanColleWidget#readme",
"devDependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.0",
"@types/chrome": "0.0.181",
"@types/jest": "^27.4.0",
"@types/node": "^18.11.18",
"@types/react": "^18.0.14",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"css-loader": "^6.5.1",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-react": "^7.32.1",
"jest": "^27.4.5",
"jest-canvas-mock": "^2.4.0",
"jest-cli": "^27.4.5",
"jestil": "0.0.3",
"mini-css-extract-plugin": "^2.6.0",
"node-fetch": "^2.6.7",
"node-sass": "^7.0.3",
"sass-loader": "^13.0.2",
"sinon-chrome": "^3.0.1",
"source-map-loader": "^3.0.1",
"terser-webpack-plugin": "^5.3.0",
"ts-jest": "^27.1.2",
"ts-loader": "^9.2.8",
"ts-node": "^10.4.0",
"twitter": "^1.7.1",
"typescript": "^4.9.5",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.1"
},
"jest": {
"collectCoverage": false,
"collectCoverageFrom": [
"src/js/*.ts",
"src/js/Applications/**/*.ts",
"src/js/Services/**/*.ts"
],
"verbose": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"setupFiles": [
"<rootDir>/src/js/entrypoints/global-pollution.ts",
"<rootDir>/tests/setup/chrome.ts",
"<rootDir>/tests/setup/filesystem.ts",
"<rootDir>/tests/setup/image-onload.ts",
"jest-canvas-mock"
],
"testRegex": "tests/.*\\.spec\\.ts$",
"testPathIgnorePatterns": [
"/node_modules/",
"/v2_backup/"
],
"testEnvironment": "jsdom"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.2.0",
"chomex": "^2.2.0",
"classnames": "^2.3.2",
"firebase": "^9.15.0",
"oauthsimple": "0.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"spectre.css": "^0.5.9"
}
}