-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
39 lines (39 loc) · 911 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
{
"name": "ts-money",
"description": "Typescript port of js-money. Implementation of the Money value object.",
"version": "0.4.8",
"main": "build/index.js",
"typings": "build/index.d.ts",
"author": {
"name": "Mathew Cormier",
"email": "[email protected]"
},
"keywords": [
"money",
"javascript",
"currency",
"typescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/macor161/ts-money.git"
},
"bugs": {
"url": "https://github.com/macor161/ts-money/issues"
},
"dependencies": {
"lodash": "^4.17.5"
},
"devDependencies": {
"@types/lodash": "^4.14.64",
"@types/node": "^7.0.23",
"chai": "1.x.x",
"mocha": "^10.0.0",
"typescript": "^2.3.4"
},
"scripts": {
"build": "./node_modules/.bin/tsc",
"test": "mocha --reporter spec --require test/bootstrap/node test/*.test.js"
}
}