forked from cristobal-io/mortgage-calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 940 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
{
"name": "mortgage-calculator",
"version": "1.1.2",
"description": "package for basic calculation mortgage",
"main": "lib/index.js",
"scripts": {
"test": "make test",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"mortgage",
"calculator",
"loan",
"finance"
],
"author": "Cristobal Gomez",
"homepage": "https://github.com/cristobal-io/mortgage-calculator",
"repository": {
"type": "git",
"url": "https://github.com/cristobal-io/mortgage-calculator"
},
"bugs": {
"url": "http://github.com/cristobal-io/mortgage-calculator/issues",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": ">= 0.10.x"
},
"dependencies": {
"lodash": "3.9.3"
},
"devDependencies": {
"browserify": "11.0.0",
"chai": "^3.5.0",
"coveralls": "2.11.3",
"jscs": "1.13.1",
"jshint": "2.8.0",
"mocha": "2.2.5"
}
}