-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.49 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@caviar/roe-block",
"version": "4.0.2",
"description": "Caviar block for roe",
"main": "src/index.js",
"scripts": {
"test": "NODE_DEBUG=@caviar/roe-block nyc ava --timeout=10s --verbose",
"test:dev": "NODE_DEBUG=@caviar/roe-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/roe-block.git"
},
"keywords": [
"@caviar/roe-block"
],
"engines": {
"node": ">= 6"
},
"ava": {
"babel": false,
"files": [
"test/*.test.js"
]
},
"author": "caviarjs",
"license": "MIT",
"bugs": {
"url": "https://github.com/caviarjs/roe-block/issues"
},
"devDependencies": {
"@caviar/test": "^2.0.2",
"@ostai/eslint-config": "^3.3.2",
"ava": "^2.2.0",
"caviar": "^6.0.1",
"codecov": "^3.5.0",
"eslint": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"get-port": "^5.0.0",
"nyc": "^14.1.1",
"supertest": "^4.0.2",
"test-fixture": "^2.4.1"
},
"dependencies": {
"core-util-is": "^1.0.2",
"err-object": "^5.1.2",
"roe": "^2.1.2",
"tapable": "^1.1.3"
},
"peerDependencies": {
"caviar": "^6.0.1"
}
}