-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
38 lines (38 loc) · 993 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
{
"name": "@coinify/currency",
"version": "1.4.3",
"description": "Helper functions for managing amounts in different currencies",
"main": "src/index.js",
"scripts": {
"test": "mocha --recursive test/bootstrap.test.js ./test",
"lint": "eslint --color .",
"lint-fix": "eslint --fix .",
"build": "npm i && npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CoinifySoftware/node-currency.git"
},
"keywords": [
"currency",
"coinify",
"fiat",
"crypto"
],
"author": "Jesper Borgstrup",
"license": "MIT",
"bugs": {
"url": "https://github.com/CoinifySoftware/node-currency/issues"
},
"homepage": "https://github.com/CoinifySoftware/node-currency#readme",
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@coinify/eslint-config-coinify": "^1.3.2",
"chai": "^4.2.0",
"eslint": "^7.8.1",
"eslint-plugin-mocha": "^8.0.0",
"mocha": "^8.1.3"
}
}