-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 1.89 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "botc",
"description": "CLI to create Chat bots using Bot Compiler",
"version": "1.4.0",
"author": "Abhishek V @abhivijay96 https://github.com/abhivijay96",
"bin": {
"botc": "./bin/run"
},
"bugs": "",
"dependencies": {
"@oclif/command": "^1.4.6",
"@oclif/config": "^1.3.61",
"@oclif/plugin-help": "^1.2.1",
"async": "^2.6.0",
"axios": "^0.18.0",
"js-beautify": "^1.7.5",
"jsonschema": "^1.2.2",
"ncp": "^2.0.0",
"request": "^2.85.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"@oclif/dev-cli": "^1.4.2",
"@oclif/test": "^1.0.1",
"@oclif/tslint": "^1.0.2",
"@types/chai": "^4.1.2",
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.0",
"chai": "^4.1.2",
"globby": "^8.0.1",
"grunt": "^1.0.3",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify-es": "^3.3.0",
"mocha": "^5.0.5",
"ts-node": "^5.0.1",
"tslib": "^1.9.0",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
".oclif.manifest.json",
"/bin",
"/lib"
],
"keywords": [
"oclif",
"botc",
"chatbot compiler",
"microsoftbotconnector",
"dailogflow"
],
"license": "GNU",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "botc",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "https://github.com/bot-compiler/botc",
"scripts": {
"build": "rm -rf lib && grunt && tsc",
"clean": "rm -f .oclif.manifest.json",
"lint": "tsc -p test --noEmit && tslint -p test -t stylish",
"postpublish": "npm run clean",
"posttest": "npm run lint",
"prepublishOnly": "npm run build && oclif-dev manifest",
"preversion": "npm run clean",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}