forked from saehun/node-kakao
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.15 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.15 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
{
"name": "node-kakao",
"version": "1.0.5",
"description": "KakaoTalk PC Client implemention(Loco protocol wrapper) written with Node",
"main": "dist/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha -r ts-node/register ./tests/*.test.ts",
"locotest": "./node_modules/.bin/ts-node loco-test.ts",
"build": "./node_modules/.bin/tsc",
"prepublishOnly": "npm run test && npm run build"
},
"keywords": [],
"author": {
"name": "storycraft",
"email": "storycraft@storyboard.ml",
"url": "https://storyboard.ml"
},
"license": "MIT",
"devDependencies": {
"@types/bson": "^4.0.0",
"@types/chai": "^4.2.3",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.11",
"@types/node-forge": "^0.8.6",
"@types/request-promise": "^4.1.44",
"chai": "^4.2.0",
"mocha": "^6.2.1",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
},
"repository": {
"type": "git",
"url": "https://github.com/storycraft/node-kakao.git"
},
"dependencies": {
"bson": "^4.0.2",
"node-forge": "^0.9.1",
"request": "^2.88.0",
"request-promise": "^4.2.4"
}
}