forked from izqalan/bnm-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.11 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.11 KB
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
43
44
45
46
47
48
49
50
{
"name": "bnm-api",
"version": "1.0.1",
"description": "Bank Negara Malaysia JS API",
"main": "index.js",
"scripts": {
"test": "mocha",
"prettier": "prettier --write --ignore-unknown test lib index.js"
},
"keywords": [
"bnm",
"bank",
"negara",
"malaysia",
"api",
"wrapper"
],
"author": "izqalan",
"license": "MIT",
"dependencies": {
"chai": "^4.2.0",
"mocha": "^6.2.2",
"node-fetch": "^2.6.0"
},
"directories": {
"lib": "lib",
"test": "test"
},
"devDependencies": {
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "2.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "npm run prettier"
},
"repository": {
"type": "git",
"url": "git+https://github.com/izqalan/bnm-api.git"
},
"bugs": {
"url": "https://github.com/izqalan/bnm-api/issues"
},
"homepage": "https://github.com/izqalan/bnm-api#readme"
}