forked from aichaos/rivescript-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.08 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
{
"name": "rivescript",
"version": "1.18.0",
"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 <root@kirsle.net> (https://www.kirsle.net/)",
"main": "lib/rivescript.js",
"files": [
"README.md",
"LICENSE",
"Changes.md",
"rivescript.d.ts",
"lib/",
"dist/",
"docs/"
],
"directories": {
"lib": "lib",
"doc": "docs"
},
"repository": {
"type": "git",
"url": "https://github.com/aichaos/rivescript-js.git"
},
"contributors": [
"Chris Taylor <christhebaron@gmail.com> (https://github.com/ChrisTheBaron)",
"dc <dc@biz.pikkle.com> (https://github.com/dcsan)",
"Gerrit (https://github.com/pyrox777)",
"Greg Leuch <contact@gleu.ch> (https://gleu.ch)",
"Mark Downey <mark@thebakery.io> (http://thebakery.io)",
"Mike Rombout <mike.rombout1@gmail.com> (http://www.mikero.nl/)",
"Philip Nuzhnyi (https://github.com/callmephilip)",
"pirelaurent (https://github.com/pirelaurent)"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/aichaos/rivescript-js/blob/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/aichaos/rivescript-js/issues",
"email": "root@kirsle.net"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-contrib-uglify": "~0.6.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-contrib-connect": "~0.9.0",
"grunt-contrib-nodeunit": "~0.4.1",
"coffee-script": "~1.9.1",
"grunt-contrib-coffee": "~0.13.0",
"grunt-browserify": "~3.7.0",
"grunt-contrib-clean": "~0.6.0",
"coffeelint": "~1.9.3",
"grunt-coffeelint": "0.0.13"
},
"scripts": {
"prepublish": "grunt dist",
"test": "grunt test"
},
"dependencies": {
"fs-readdir-recursive": "^1.0.0",
"rsvp": "^3.1.0"
},
"typings": "rivescript.d.ts"
}