-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
51 lines (51 loc) · 1.29 KB
/
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
43
44
45
46
47
48
49
50
51
{
"name": "iamport-rest-client-nodejs",
"version": "0.9.12",
"description": "NodeJS용 아임포트 REST API Client 입니다.",
"main": "dist/Iamport.js",
"types": "dist/Iamport.d.ts",
"scripts": {
"start": "npm start",
"lint": "tslint -p tsconfig.json",
"build": "npm run lint && npm run prepublish",
"test": "jest --config jestconfig.json",
"example": "ts-node example/index.js",
"prepublish": "rm -rf dist && tsc"
},
"author": {
"name": "Solee Deedee Choi",
"email": "[email protected]",
"url": "https://github.com/SoleeChoi"
},
"license": "MIT",
"keywords": [
"iamport",
"node",
"nodejs",
"rest-client",
"iamport-rest-client"
],
"homepage": "https://github.com/iamport/rest-client-nodejs",
"repository": {
"type": "git",
"url": "https://github.com/iamport/rest-client-nodejs"
},
"dependencies": {
"@types/node": "^12.7.5",
"axios": "^0.19.0",
"lodash": "^4.17.19",
"qs": "^6.9.0"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/lodash": "^4.14.162",
"@types/qs": "^6.9.5",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.3"
}
}