-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.65 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
{
"name": "hatsuon",
"version": "0.0.0-development",
"description": "Japanese pitch accent tools",
"license": "MIT",
"author": {
"name": "Duncan Bay",
"email": "[email protected]"
},
"repository": "https://github.com/DJTB/hatsuon.git",
"homepage": "https://djtb.github.io/hatsuon",
"engines": {
"node": ">=8"
},
"scripts": {
"start": "nps --no-scripts",
"test": "nps test",
"precommit": "lint-staged"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"all-contributors-cli": "^6.7.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.5",
"nps": "^5.10.0",
"nps-utils": "^1.7.0",
"prettier": "^2.5.1",
"rollup": "^2.70.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/*.fixture.js"
]
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"eslint --fix"
]
},
"keywords": [
"japanese",
"pitch",
"accent",
"pattern",
"pronunciation",
"アクセント",
"発音"
]
}