-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.24 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.24 KB
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": "replico",
"description": "A REPL with support for await",
"version": "1.0.1",
"author": "Jean Ponchon <jean.ponchon@novadiscovery.com>",
"repository": {
"type": "git",
"url": "https://github.com/nopnop/replico.git"
},
"bugs": {
"url": "https://github.com/nopnop/replico/issues"
},
"homepage": "https://github.com/nopnop/replico/htmly",
"licenses": "MIT",
"main": "lib/replico",
"bin": {
"replico": "bin/replico.js"
},
"engines": {
"node": ">= 5"
},
"scripts": {
"test": "mocha",
"spec": "mocha --reporter spec",
"monitor": "mocha --reporter spec --watch",
"debugtest": "mocha --debug-brk --reporter spec",
"coverage": "rm -rf ./lib-cov && jscoverage ./lib ./lib-cov && COVERAGE=true mocha --reporter html-cov > ./coverage.html && rm -rf ./lib-cov",
"jshint": "./node_modules/.bin/jshint --exclude node_modules",
"release": "standard-version"
},
"dependencies": {
"bluebird": "^3.3.4"
},
"devDependencies": {
"expect.js": "*",
"jshint": "*",
"mocha": "*",
"standard-version": "^4.4.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"repl",
"co",
"coroutine",
"bluebird",
"promise"
]
}