-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.29 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.29 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
{
"name": "chatbot-flow",
"version": "0.0.14",
"description": "An implementation of finite state machines built with chatbot conversations in mind",
"main": "distribution/index.js",
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha --require babel-register src/**/*.tests.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"clean": "rimraf distribution",
"build": "babel src --ignore src/test --out-dir distribution",
"prepublishOnly": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dsullivan7/chatbot-flow.git"
},
"author": "Danny Sullivan <dbsullivan23@gmail.com>",
"license": "MIT",
"keywords": [
"chatbot",
"chat"
],
"bugs": {
"url": "https://github.com/dsullivan7/chatbot-flow/issues"
},
"homepage": "https://github.com/dsullivan7/chatbot-flow#readme",
"engines": {
"node": "7.8.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.24.0",
"coveralls": "^2.13.1",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.4.2",
"nyc": "^11.0.2",
"rimraf": "^2.6.1"
}
}