-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.18 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
{
"name": "@caviar/koa-block",
"version": "1.0.0",
"description": "Caviar block for koa",
"main": "src/index.js",
"scripts": {
"test": "NODE_DEBUG=@caviar/koa-block nyc ava --timeout=10s --verbose",
"test:dev": "NODE_DEBUG=@caviar/koa-block nyc ava --timeout=10s --verbose && npm run report:dev",
"lint": "eslint .",
"fix": "eslint . --fix",
"posttest": "npm run report",
"report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"report:dev": "nyc report --reporter=html && npm run report:open",
"report:open": "open coverage/index.html"
},
"files": [
"src/"
],
"repository": {
"type": "git",
"url": "git://github.com/caviarjs/koa-block.git"
},
"keywords": [
"@caviar/koa-block"
],
"engines": {
"node": ">= 6"
},
"ava": {
"babel": false,
"files": [
"test/*.test.js"
]
},
"author": "caviarjs",
"license": "MIT",
"bugs": {
"url": "https://github.com/caviarjs/koa-block/issues"
},
"devDependencies": {
"@ostai/eslint-config": "^3.1.0",
"ava": "^1.4.1",
"codecov": "^3.4.0",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.17.2",
"nyc": "^14.1.1"
}
}