-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.32 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
{
"name": "@caviar/test",
"version": "2.0.2",
"description": "Testing utility for caviar",
"main": "src/index.js",
"scripts": {
"test:only": "nyc ava --timeout=30s --verbose",
"test": "npm run test:only",
"test:dev": "npm run test:only && npm run report:dev && rm -rf node_modules/.cache",
"lint": "eslint .",
"posttest": "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/caviar-test.git"
},
"keywords": [
"@caviar/test"
],
"engines": {
"node": ">= 6"
},
"ava": {
"babel": false,
"files": [
"test/*.test.js"
]
},
"author": "kaelzhang",
"license": "MIT",
"bugs": {
"url": "https://github.com/caviarjs/caviar-test/issues"
},
"devDependencies": {
"ava": "^1.4.1",
"codecov": "^3.3.0",
"nyc": "^13.3.0",
"eslint-config-ostai": "^3.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint": "^5.16.0",
"caviar": "^6.0.1"
},
"dependencies": {
"core-util-is": "^1.0.2",
"fs-extra": "^7.0.1",
"request": "^2.88.0",
"supertest": "^4.0.2"
},
"peerDependencies": {
"caviar": "^6.0.1"
}
}