-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.65 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.65 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "botmaster-cli",
"version": "0.4.0",
"description": "command line interface for botmaster. Enables developers to create templated botmaster projects using the preferred architecture. Also comes with a console botmaster client (using socket.io) to make it easy to test out your bot",
"main": "./dist/lib/index.js",
"scripts": {
"pretest": "npm run build",
"test": "export NODE_ENV=test; nyc --reporter=lcov --reporter=html ava",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"postversion": "git push && git push --tags && rm -rf build/temp",
"build": "mkdir -p dist && babel src --out-dir dist",
"docs": "documentation readme src/index.js --section=\"API Usage\"",
"start": "nodemon --exec babel-node src/lib/index.js"
},
"ava": {
"files": [
"tests/**/*.js"
],
"source": [],
"match": [],
"serial": true,
"verbose": true,
"failFast": false,
"tap": false,
"powerAssert": false
},
"bin": {
"botmaster": "dist/lib/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/botmasterai/botmaster-cli"
},
"keywords": [
"bot",
"botmaster",
"cli",
"botmaster-template",
"botmaster-starter",
"command line bot"
],
"author": "JD Wuarin <john.dwuarin@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/botmasterai/botmaster-cli/issues"
},
"homepage": "https://github.com/botmasterai/botmaster-cli#readme",
"dependencies": {
"babel-runtime": "^6.23.0",
"chalk": "^1.1.3",
"cheerio": "^0.22.0",
"fs-promise": "^2.0.0",
"generator-npm-init": "^1.3.2",
"hanson": "^1.2.0",
"inquirer": "^3.0.4",
"lodash": "^4.17.4",
"socket.io-client": "^1.7.3",
"source-map-support": "^0.4.15",
"yargs": "^6.6.0",
"yeoman-environment": "^1.6.6",
"yeoman-generator": "^1.1.0"
},
"engines": {
"node": ">=6.x.x <9.0.0"
},
"devDependencies": {
"ava": "^0.18.2",
"ava-spec": "^1.1.0",
"babel-cli": "^6.23.0",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2016": "^6.22.0",
"babel-preset-es2017": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"coveralls": "^2.11.14",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.0.0",
"eslint-plugin-ava": "^4.2.0",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.2.0",
"jsdoc": "^3.4.2",
"nodemon": "^1.10.2",
"nyc": "^10.1.2",
"yeoman-test": "^1.6.0"
}
}