-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.58 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
{
"name": "coffea-starter",
"version": "0.0.0",
"description": "coffea starter kit / boilerplate to quickly develop a chat bot",
"bin": {
"bot": "build/index.js"
},
"scripts": {
"start": "npm run start:prod",
"start:dev": "cross-env NODE_ENV=development DEBUG=bot:* babel-node src/index.js",
"start:prod": "npm run prepublish && cross-env NODE_ENV=production DEBUG=bot:*,-*debug,-*log node build/index.js",
"watch": "cross-env NODE_ENV=development DEBUG=bot:* babel-watch -w src src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf build",
"compile": "babel --presets es2015 -d build/ src/",
"prepublish": "npm run clean && npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caffeinery/coffea-starter.git"
},
"keywords": [
"coffea",
"starter",
"kit",
"boilerplate",
"chat",
"bot",
"messaging",
"slack",
"irc",
"telegram"
],
"author": "Daniel Bugl <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/caffeinery/coffea-starter/issues"
},
"homepage": "https://github.com/caffeinery/coffea-starter#readme",
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.5.1",
"babel-eslint": "^4.1.8",
"babel-plugin-transform-object-rest-spread": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.5.2",
"babel-watch": "^2.0.2",
"cross-env": "^1.0.7",
"rimraf": "^2.5.2"
},
"dependencies": {
"coffea": "1.0.0-beta18",
"debug-dude": "^1.0.3"
}
}