-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.63 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
{
"name": "card-image-for-yugioh-card-wiki",
"description": "Show card images on Yu-Gi-Oh! Card Wiki.",
"version": "0.3.0",
"author": "Yuichi Tanikawa",
"bugs": {
"url": "https://github.com/uu1t/card-image-for-yugioh-card-wiki/issues"
},
"devDependencies": {
"@types/chrome": "0.0.86",
"@types/jest": "^24.0.15",
"@types/node": "^12.0.8",
"html-loader-jest": "^0.2.1",
"jest": "^24.8.0",
"node-fetch": "^2.6.0",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.3",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.2",
"web-ext": "^3.0.0",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4"
},
"homepage": "https://github.com/uu1t/card-image-for-yugioh-card-wiki",
"jest": {
"transform": {
"^.+\\.html$": "html-loader-jest",
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"setupFiles": [
"<rootDir>/src/setupTests.js"
]
},
"license": "MIT",
"main": "dist/bundle.js",
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/uu1t/card-image-for-yugioh-card-wiki"
},
"scripts": {
"build": "webpack",
"lint": "tslint --project tsconfig.json",
"lint:ext": "npm run build -- -p && web-ext lint",
"start:firefox": "web-ext run",
"test": "jest",
"zip": "npm run build -- -p && ./zip.sh"
},
"webExt": {
"sourceDir": "dist"
}
}