-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 935 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 935 Bytes
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
{
"name": "kebot",
"version": "0.1.5",
"description": "Executor of scripts and commands",
"main": "./lib/index.js",
"bin": {
"kb": "./bin/kebot.js"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "jest --verbose",
"build": "tsc -w",
"esdoc": "esdoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wilsson/kebot.git"
},
"author": "wilsson <wilsonft83@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wilsson/kebot/issues"
},
"homepage": "https://github.com/wilsson/kebot#readme",
"devDependencies": {
"@types/node": "^7.0.18",
"esdoc": "^0.5.2",
"jest": "^21.2.1",
"typescript": "^2.3.2"
},
"dependencies": {
"chalk": "^1.1.3",
"interpret": "^1.0.1",
"liftoff": "^2.3.0",
"minimist": "^1.2.0",
"pretty-hrtime": "^1.0.3",
"time-stamp": "^1.0.1",
"v8flags": "^2.0.11"
}
}