-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.04 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
{
"name": "botlang",
"author": {
"name": "Mathias Schilling",
"email": "m@matchilling.com",
"url": "https://www.matchilling.com"
},
"homepage": "https://botlang.org",
"version": "0.8.0",
"license": "GPL-3.0",
"description": "Botlang implementation for JavaScript",
"keywords": [
"Artificial intelligence",
"Bot",
"Chat"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/botlang/botlang-js.git"
},
"bugs": {
"url": "https://github.com/botlang/botlang-js/issues"
},
"main": "./lib/Botlang.js",
"bin": {
"botlang": "./bin/cli"
},
"engines": {
"node": ">=4.3.2"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.24.0",
"babel-plugin-istanbul": "^4.1.1",
"babel-preset-es2015": "^6.22.0",
"chai": "^3.5.0",
"esdoc": "^0.5.2",
"eslint": "^3.17.0",
"eslint-config-matchilling": "^2.1.0",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.2.0",
"nyc": "^10.2.0"
},
"scripts": {
"cli": "npm run compile && node ./lib/Cli/index.js ./example/eliza.bot",
"compile": "node ./node_modules/babel-cli/bin/babel.js --minified --no-comments --out-dir lib/ src/",
"coverage": "node node_modules/nyc/bin/nyc.js --check-coverage npm test",
"dev": "node node_modules/mocha/bin/mocha --compilers js:babel-core/register --recursive --watch test/",
"docs:make": "node node_modules/esdoc/out/src/ESDocCLI.js -c .esdoc.json",
"eslint": "node node_modules/eslint/bin/eslint.js src/",
"start": "npm run cli",
"test": "npm run eslint && node node_modules/mocha/bin/mocha --compilers js:babel-core/register --recursive test/",
"web": "npm run compile && node ./lib/Web/index.js"
},
"eslintConfig": {
"extends": [
"eslint-config-matchilling"
]
},
"babel": {
"presets": [
"es2015"
]
}
}