forked from eniagreen/botml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.83 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": "botml",
"version": "2.0.9",
"description": "Botml is a powerful markup language for designing modern chatbots.",
"keywords": [
"bot",
"chatbot",
"aiml",
"chatscript",
"buddyscript",
"rivescript",
"siml",
"bot framework",
"superscript"
],
"author": "Arnaud Leymet <arnaud@codename.co>",
"license": "UNLICENSED",
"homepage": "https://codename.co/botml/",
"repository": {
"type": "git",
"url": "https://github.com/codename-co/botml.git"
},
"bugs": {
"url": "https://github.com/codename-co/botml/issues"
},
"files": [
"dist",
"examples",
"lib"
],
"directories": {
"lib": "lib",
"example": "examples"
},
"main": "dist/botml.js",
"module": "lib/botml.js",
"scripts": {
"lint": "eslint lib test",
"test": "mocha test/**/*.test.js",
"preautotest": "npm i -g mocha",
"autotest": "supervisor -q -t -n exit -x mocha -- -b",
"precommit": "npm run lint && npm test",
"prepush": "npm run lint && npm test",
"build": "parcel build lib/botml.js --target browser --global Botml -o botml"
},
"preferGlobal": true,
"bin": {
"bot": "lib/cli.js"
},
"dependencies": {
"chalk": "^2.4.1",
"machina": "^4.0.2",
"memwatch-next": "^0.3.0",
"xregexp": "^4.2.0",
"yargs": "^5.0.0"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"chai": "^3.5.0",
"decache": "^4.4.0",
"eslint": "^5.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-standard": "^4.0.0",
"husky": "^0.14.3",
"leakage": "^0.3.0",
"mocha": "^2.4.5",
"parcel-bundler": "^1.10.3",
"standard": "*",
"supervisor": "^0.12.0"
},
"engines": {
"node": ">= 6.0.0"
},
"runkitExampleFilename": "./examples/runkit.js"
}