forked from sho-hey-hey/chatwork-api-wrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 853 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 853 Bytes
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
{
"name": "chatwork-api-wrap",
"version": "1.0.1",
"description": "Chatwork api wrapper.",
"main": "src/js/index.js",
"author": "ShoheiOno",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"superagent": "^8.1.2"
},
"devDependencies": {
"@types/superagent": "^4.1.24",
"rimraf": "^5.0.5",
"tslint": "^6.1.3",
"typescript": "^5.3.3"
},
"scripts": {
"dist": "rimraf ./src/js/ && tsc",
"watch": "tsc -w",
"lint": "tslint -c tslint.json 'src/ts/**/*.ts'"
},
"keywords": [
"chatwork",
"api"
],
"repository": {
"type": "git",
"url": "git+https://github.com/shoheiono/chatwork-api-wrap.git"
},
"bugs": {
"url": "https://github.com/shoheiono/chatwork-api-wrap/issues"
},
"homepage": "https://github.com/shoheiono/chatwork-api-wrap#readme"
}