-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.06 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
{
"name": "austax",
"version": "1.0.3",
"description": "Simplistic command line tool to calculate gross income and net income given an annual salary (for Australians only! :))",
"scripts": {
"start": "app.js",
"test": "node node_modules/mocha/bin/mocha --recursive test",
"coverage": "node node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha test/unit/domain/*.test.js --recursive -- -u exports -R spec && open coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juancancela/austax.git"
},
"engine": "node 4.2.3",
"bin": {
"austax": "austax.js"
},
"keywords": [
"australia",
"tax",
"income",
"super",
"rate",
"superrate",
"gross",
"income"
],
"author": "Juan Carlos Cancela <cancela.juancarlos@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/juancancela/austax/issues"
},
"homepage": "https://github.com/juancancela/austax#readme",
"dependencies": {
"istanbul": "^0.4.1",
"mocha": "^2.3.4"
}
}