-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "lizbeth",
"version": "0.1.0",
"description": "A CLI for using the robotic Rogerian therapist, Eliza",
"main": "index.js",
"scripts": {
"start": "./bin/index.js",
"test": "jshint bin lib test && mocha -R spec --recursive",
"cov": "jscoverage lib cov-lib && COVERAGE=true mocha -R html-cov --recursive > coverage.html",
"coveralls": "jscoverage lib cov-lib && COVERAGE=true mocha -R mocha-lcov-reporter --recursive | coveralls"
},
"bin": {
"lizbeth": "./bin/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/garbados/eliza-js.git"
},
"keywords": [
"therapist",
"cli"
],
"author": "Diana Thayer <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/garbados/eliza-js/issues"
},
"homepage": "https://github.com/garbados/eliza-js",
"dependencies": {
"async": "^0.9.0",
"commander": "^2.6.0",
"irc": "^0.3.9",
"prompt": "^0.2.14",
"yargs": "^3.10.0"
},
"devDependencies": {
"coveralls": "^2.11.2",
"jscoverage": "^0.5.9",
"jshint": "^2.5.11",
"mocha": "^2.1.0",
"mocha-lcov-reporter": "0.0.1",
"mock-stdin": "^0.3.0",
"readable-stream": "^1.0.33"
}
}