-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.07 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.07 KB
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
{
"name": "deinja",
"version": "0.0.3",
"description": "Convert Japanese words into original forms",
"main": "src/deinja.js",
"dependencies": {
"uniqlist": "^1.0.4"
},
"devDependencies": {
"@biomejs/biome": "^2.3.7",
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^30.2.0",
"babel-loader": "^10.0.0",
"jest": "^30.2.0",
"webpack": "^5.103.0",
"webpack-cli": "^6.0.1"
},
"scripts": {
"lint": "biome check ./src ./__test__",
"format": "biome format --write ./src ./__test__",
"test": "jest",
"test-watch": "jest --watch",
"test-cov": "npm test -- --coverage",
"build": "webpack",
"release": "webpack --node-env=production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wtetsu/deinja.git"
},
"keywords": [
"Japanese",
"text"
],
"author": "wtetsu",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wtetsu/deinja/issues"
},
"homepage": "https://github.com/wtetsu/deinja#readme"
}