-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 942 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
{
"name": "@interlay/monetary-js",
"version": "0.7.4",
"main": "build/index.js",
"description": "JavaScript library to safely handle currency and cryptocurrency amounts",
"license": "MIT",
"repository": "https://github.com/interlay/monetary",
"scripts": {
"test": "mocha -r ts-node/register test/**/*.test.ts",
"build": "tsc"
},
"dependencies": {
"@types/big.js": "6.1.2",
"big.js": "6.1.1",
"typescript": "^4.3.2"
},
"files": [
"build/",
"README.md"
],
"prettier": {
"singleQuote": false,
"tabWidth": 2
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.2",
"chai": "^4.3.4",
"fast-check": "^2.16.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mocha": "^9.0.0",
"prettier": "^2.3.1",
"ts-node": "^10.0.0"
}
}