forked from bocoup/chatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.4 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": "chatter",
"version": "0.4.1",
"description": "A collection of useful primitives for creating interactive chat bots.",
"main": "dist/index.js",
"scripts": {
"test": "grunt test",
"build": "grunt build",
"start": "grunt watch",
"babel": "babel-node --",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bocoup/chatter.git"
},
"author": "\"Cowboy\" Ben Alman (http://benalman.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bocoup/chatter/issues"
},
"homepage": "https://github.com/bocoup/chatter#readme",
"engines": {
"node": ">=4.0"
},
"files": [
"dist"
],
"dependencies": {
"babel-runtime": "^6.9.0",
"bluebird": "^3.3.5",
"ramda": "^0.21.0"
},
"devDependencies": {
"@slack/client": "^3.1.0",
"babel-cli": "^6.8.0",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"chalk": "^1.1.3",
"dirty-chai": "^1.2.2",
"eslint-plugin-node": "^1.4.0",
"grunt": "^1.0.1",
"grunt-babel": "^6.0.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-eslint": "^18.1.0",
"grunt-mocha-test": "^0.12.7",
"mocha": "^2.4.5",
"source-map-support": "^0.4.0"
}
}