-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 900 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 900 Bytes
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
{
"name": "hanzi",
"author": "Niel de la Rouviere",
"description":
"HanziJS is a Chinese character and NLP module for Chinese language processing for Node.js",
"version": "2.1.5",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git@github.com:nieldlr/Hanzi.git"
},
"jest": {
"testRegex": "/test/.*",
"testEnvironment": "node"
},
"scripts": {
"test": "jest",
"precommit": "lint-staged",
"coverage": "npm test -- --coverage",
"postcoverage": "opn coverage/lcov-report/index.html"
},
"lint-staged": {
"{index.js,*.json,lib/*.js,test/*.js}": ["prettier --write", "git add"]
},
"prettier": {
"bracketSpacing": false,
"singleQuote": true
},
"devDependencies": {
"husky": "^0.14.3",
"jest-cli": "^20.0.0",
"lint-staged": "^4.2.2",
"prettier": "^1.7.0"
},
"dependencies": {}
}