-
Notifications
You must be signed in to change notification settings - Fork 144
/
package.json
80 lines (80 loc) · 2.27 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
78
79
80
{
"name": "rivescript",
"version": "2.2.1",
"description": "RiveScript is a scripting language for chatterbots, making it easy to write trigger/response pairs for building up a bot's intelligence.",
"keywords": [
"bot",
"chatbot",
"chatterbot",
"aiml",
"artificial intelligence",
"chatscript",
"buddyscript"
],
"homepage": "https://www.rivescript.com/",
"author": "Noah Petherbridge <[email protected]> (https://www.kirsle.net/)",
"main": "src/rivescript.js",
"files": [
"README.md",
"LICENSE",
"Changes.md",
"rivescript.d.ts",
"shell.js",
"src/",
"lib/",
"dist/",
"docs/"
],
"directories": {
"lib": "src",
"doc": "docs"
},
"repository": {
"type": "git",
"url": "https://github.com/aichaos/rivescript-js.git"
},
"contributors": [
"Chris Taylor <[email protected]> (https://github.com/ChrisTheBaron)",
"dc <[email protected]> (https://github.com/dcsan)",
"Gerrit (https://github.com/pyrox777)",
"Greg Leuch <[email protected]> (https://gleu.ch)",
"Mark Downey <[email protected]> (http://thebakery.io)",
"Mike Rombout <[email protected]> (http://www.mikero.nl/)",
"Philip Nuzhnyi (https://github.com/callmephilip)",
"pirelaurent (https://github.com/pirelaurent)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/aichaos/rivescript-js/issues",
"email": "[email protected]"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"commander": "^2.19.0",
"nodeunit": "^0.11.3",
"typescript": "^3.3.4000",
"uglify-js": "^3.4.9",
"webpack": "^4.29.5",
"webpack-cli": "^3.3.12"
},
"scripts": {
"prepublish": "npm run dist",
"build": "babel src -d lib",
"build-tests": "babel test -d test.babel",
"test": "npm run build; npm run build-tests; nodeunit test.babel/test-*.js",
"webpack": "webpack",
"uglify": "uglifyjs -o dist/rivescript.min.js dist/rivescript.js",
"dist": "npm run build; npm run webpack; npm run uglify",
"clean": "rm -rf dist lib test.babel"
},
"dependencies": {
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"fs-readdir-recursive": "^1.0.0"
},
"typings": "rivescript.d.ts",
"bin": {
"riveshell": "./shell.js"
}
}