-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.46 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.46 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "node-line-messaging-api",
"version": "0.19.0",
"description": "LINE Messaging API Unofficial SDK",
"keywords": [
"line",
"line bot",
"line bot api",
"line messaging",
"line messaging api",
"bot"
],
"main": "build/index.js",
"scripts": {
"prepublish": "npm run build",
"test": "ava test --verbose",
"watch": "npm run build && ava test --verbose --watch",
"build": "babel src -d build",
"dev": "nodemon --exec NODE_ENV=development babel-node src/index.js",
"start": "npm run build && NODE_ENV=production node build/index.js",
"lint": "eslint src",
"lint:fix": "eslint --fix src"
},
"author": "Muhammad Mustadi <muhammad.mustadi@gmail.com> (http://mustadi.xyz)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mathdroid/node-line-messaging-api.git"
},
"dependencies": {
"axios": "^0.15.1",
"body-parser": "^1.15.2",
"eventemitter3": "^2.0.2",
"express": "^4.14.0",
"localtunnel": "^1.8.2",
"morgan": "^1.7.0"
},
"devDependencies": {
"ava": "^0.18.1",
"babel-cli": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-3": "^6.17.0",
"eslint": "^3.18.0",
"eslint-config-standard": "^7.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"nodemon": "^1.11.0"
},
"ava": {
"require": "babel-register"
},
"babel": {
"presets": [
"@ava/stage-4"
]
}
}