-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.09 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
{
"name": "pirate-joe",
"version": "1.0.0",
"description": "yargs' chat-bot",
"main": "server.js",
"scripts": {
"pretest": "standard",
"test": "nyc mocha test/ test/commands/",
"start": "./bin/pirate-joe.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/yargs/pirate-joe.git"
},
"keywords": [
"chat-bot",
"example"
],
"author": "Ben Coe <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/yargs/pirate-joe/issues"
},
"homepage": "https://github.com/yargs/pirate-joe#readme",
"dependencies": {
"body-parser": "^1.15.2",
"express": "^4.14.0",
"flip": "^1.0.0",
"pirate-speak": "^1.0.0",
"request": "^2.75.0",
"yargs": "^7.0.1"
},
"engines": {
"node": "6.5.0"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^3.0.0",
"mocha": "^3.1.2",
"nock": "^9.0.2",
"nyc": "^10.0.0",
"standard": "^10.0.0",
"standard-version": "^3.0.0"
},
"files": [
"bin/",
"server.js"
]
}