-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 983 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
{
"name": "rm-api-sdk",
"description": "A NodeJS wrapper for some of the RESTful methods documented at doc.revenuemonster.my",
"keywords": [
"RevenueMonster",
"Payment",
"API",
"SDK"
],
"repository": "[email protected]:RevenueMonster/RM-API-SDK-Nodejs.git",
"version": "1.0.8",
"homepage": "https://github.com/RevenueMonster/RM-API-SDK-Nodejs",
"bugs": {
"url": "https://github.com/RevenueMonster/RM-API-SDK-Nodejs/issues"
},
"contributors": [
"ZhengyanPeh <[email protected]>",
"Bakr"
],
"license": "MIT",
"files": [
"dist/"
],
"main": "dist/index.js",
"dependencies": {
"axios": "^0.18.0",
"lodash": "^4.17.11"
},
"scripts": {
"build": "tsc",
"watch": "concurrently \"tsc --watch\" \"nodemon dist/index.js\""
},
"devDependencies": {
"@types/lodash": "^4.14.119",
"@types/node": "^10.14.4",
"concurrently": "^4.1.0",
"nodemon": "^1.18.9",
"typescript": "^3.2.2"
}
}