-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
40 lines (40 loc) · 871 Bytes
/
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
{
"name": "aiml",
"version": "0.0.2",
"description": "Artificial Intelligence Markup Language lib for Node.js",
"keywords": [
"aiml",
"ai",
"parser"
],
"homepage": "https://github.com/dotCypress/aiml",
"bugs": "https://github.com/dotCypress/aiml/issues",
"author": "Vitaly Domnikov <[email protected]>",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/dotCypress/aiml.git"
},
"scripts": {
"test": "mocha --reporter spec --compilers coffee:coffee-script -t 10000"
},
"dependencies": {
"coffee-script": "~1.6.1",
"underscore": "~1.4.4",
"async": "~0.2.6",
"dom-js": "~0.0.9",
"mustache": "~0.7.2"
},
"devDependencies": {
"mocha": "~1.8.1",
"chai": "~1.5.0"
},
"engines": {
"node": ">=0.8.0"
},
"licenses": [
{
"type": "MIT"
}
]
}