forked from birchill/10ten-ja-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.4 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
{
"name": "rikaichamp",
"version": "0.0.33",
"description": "Translate Japanese by hovering over words.",
"scripts": {
"prepare": "webpack",
"build": "webpack",
"build:chrome": "webpack --env.target=chrome",
"prepack": "web-ext build --overwrite-dest",
"lint": "web-ext lint",
"test:unit": "jest",
"test:browser": "karma start --single-run",
"test": "npm run lint && npm run test:unit && npm run test:browser",
"start": "webpack -w",
"start:chrome": "webpack -w --env.target=chrome",
"update-db": "node utils/update-db"
},
"repository": {
"type": "git",
"url": "git+https://github.com/birtles/rikaichamp.git"
},
"keywords": [
"rikaichan",
"rikaikun",
"japanese",
"dictionary",
"translation"
],
"author": "Brian Birtles",
"bugs": {
"url": "https://github.com/birtles/rikaichamp/issues"
},
"homepage": "https://github.com/birtles/rikaichamp#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/jest": "^24.0.0",
"@types/mocha": "^5.2.5",
"byline": "^5.0.0",
"chai": "^4.2.0",
"combined-stream2": "^1.1.2",
"copy-webpack-plugin": "^5.0.0",
"file-loader": "^4.0.0",
"iconv-lite": "^0.5.0",
"jest": "^23.6.0",
"karma": "^4.0.1",
"karma-chai": "^0.1.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-webpack": "^4.0.2",
"mocha": "^6.0.0",
"source-map-loader": "^0.2.4",
"ts-jest": "^24.0.0",
"ts-loader": "^5.3.2",
"web-ext-types": "github:michael-zapata/web-ext-types",
"web-ext-webpack-plugin": "github:hiikezoe/web-ext-webpack-plugin",
"webpack": "^4.39.0",
"webpack-cli": "^3.1.2",
"webpack-preprocessor": "^0.1.12"
},
"dependencies": {
"@bugsnag/js": "^6.0.0",
"husky": "^3.0.0",
"lint-staged": "^9.0.0",
"typescript": "^3.2.2",
"web-ext": "^3.0.0"
},
"webExt": {
"sourceDir": "dist-firefox"
},
"jest": {
"roots": [
"src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": ".test.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true
}
}