-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.09 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
{
"name": "line-client",
"description": "LINE (Messenger) client for Nodejs",
"version": "0.1.1",
"main": "build/Client.js",
"repository": "",
"keywords": [
"line",
"messenger",
"client"
],
"author": {
"name": "rjmasikome",
"email": "[email protected]"
},
"contributors": [],
"bugs": {
"url": "https://github.com/rjmasikome/line-client/issues"
},
"homepage": "https://github.com/rjmasikome/line-client#readme",
"directories": {
"test": "test/"
},
"scripts": {
"start": "ts-node example/",
"build": "npm run compile",
"clean": "rm -rf build",
"precompile": "npm run clean",
"compile": "tsc --pretty",
"lint": "tslint lib/ test/",
"lint:fix": "tslint --fix lib/ test/",
"test": "mocha --exit --require ts-node/register 'test/**/*.ts'",
"dev": "nodemon index.ts"
},
"dependencies": {
"debug": "^3.1.0",
"request": "^2.83.0"
},
"devDependencies": {
"eslint": "^4.13.1",
"mocha": "^4.0.1",
"nodemon": "^1.12.7",
"ts-node": "^4.0.1",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
}
}