-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.81 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "shift-bot",
"description": "Part time job management bot",
"version": "0.0.1",
"author": "Kai Sasaki",
"engines": {
"node": "5.11.0"
},
"bugs": {
"url": "https://github.com/PhysicsEngine/shift-bot"
},
"dependencies": {
"body-parser": "^1.15.0",
"compression": "^1.5.2",
"cors": "^2.7.1",
"express": "^4.13.4",
"pg": "^4.5.5",
"request": "^2.72.0",
"resource-router-middleware": "^0.5.1",
"winston": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-eslint": "^6.0.2",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-syntax-async-functions": "^6.5.0",
"babel-plugin-transform-async-to-generator": "^6.5.0",
"babel-preset-es2015-node5": "^1.2.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"esdoc": "^0.4.6",
"esdoc-importpath-plugin": "0.0.1",
"eslint": "^2.7.0",
"fixpack": "^2.3.0",
"mocha": "^2.4.5",
"npm-run-all": "^1.7.0"
},
"files": [
"README.md",
"index.js",
"package.json",
"dist"
],
"homepage": "https://github.com/PhysicsEngine/shift-bot#readme",
"keywords": [
"LINE"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/PhysicsEngine/shit-bot.git"
},
"scripts": {
"start": "node index.js",
"postinstall": "npm run build",
"build": "./node_modules/.bin/npm-run-all --parallel build:*",
"build:doc": "esdoc -c ./.esdoc.json",
"build:js": "./node_modules/.bin/babel lib/ --out-dir dist/",
"fixpack": "fixpack",
"test": "node_modules/.bin/mocha --compilers js:babel-core/register",
"watch": "./node_modules/.bin/npm-run-all --parallel watch:*",
"watch:doc": "watch \"npm run build:doc\" ./lib",
"watch:js": "babel lib/ --out-dir dist/ --watch"
}
}