-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1004 Bytes
/
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
{
"name": "japanese-income-tax",
"version": "1.0.1",
"description": "A tool for calculating Japanese income tax.",
"main": "index.js",
"scripts": {
"test": "mocha spec.js",
"lint": "souffle",
"cov": "nyc --reporter=lcov npm test",
"codecov": "npm run cov && codecov < coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kt3k/japanese-income-tax.git"
},
"keywords": [
"tax"
],
"author": "Yoshiya Hinosawa <[email protected]> (https://twitter.com/kt3k)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kt3k/japanese-income-tax/issues"
},
"homepage": "https://github.com/kt3k/japanese-income-tax#readme",
"devDependencies": {
"chai": "^3.5.0",
"codecov.io": "^0.1.6",
"mocha": "^3.1.2",
"nyc": "^10.0.0",
"souffle-cli": "^3.1.0"
},
"souffle": {
"globals": [
"describe",
"it"
],
"indent": 2
},
"nyc": {
"exclude": [
"spec.js"
]
}
}