-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "plurk2",
"version": "0.5.2",
"description": "Full featured Plurk API 2.0 for Node.js",
"main": "lib/index",
"type": "lib/index",
"scripts": {
"build": "tsc",
"generate-api-params": "tsc && node lib/api-utils && tsc",
"build-doc": "typedoc --excludeNotExported --excludePrivate --theme minimal --mode file --target es5 --readme none --out ./docs/ ./",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JLChnToZ/node-plurk2.git"
},
"keywords": [
"plurk"
],
"author": "Jeremy Lam \"JLChnToZ\"",
"license": "MIT",
"bugs": {
"url": "https://github.com/JLChnToZ/node-plurk2/issues"
},
"homepage": "https://github.com/JLChnToZ/node-plurk2#readme",
"devDependencies": {
"typedoc": "^0.14.2",
"typescript": "^3.9.5"
},
"dependencies": {
"@types/node": "^10.17.26",
"@types/request-promise": "^4.1.37",
"request": "^2.88.0",
"request-promise": "^4.2.4"
},
"babel": {
"presets": [
"env"
]
}
}