-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.14 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
{
"name": "deinja",
"version": "0.0.3",
"description": "Convert Japanese words into original forms",
"main": "src/deinja.js",
"dependencies": {
"@babel/eslint-parser": "^7.18.9",
"prettier": "^2.7.1",
"uniqlist": "^1.0.4"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^28.1.3",
"babel-loader": "^8.2.5",
"eslint": "^8.22.0",
"jest": "^28.1.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"scripts": {
"lint": "eslint src/**/*.js && prettier --check src/**/*.js",
"format": "prettier --write src/**/*.js",
"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"
}