-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.43 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
{
"name": "@caviar/cli",
"version": "2.1.1",
"description": "Caviar cli tool",
"bin": {
"caviar": "bin/caviar.js"
},
"main": "src/command.js",
"scripts": {
"test": "NODE_DEBUG=@caviar/cli nyc ava --timeout=10s --verbose",
"test:dev": "NODE_DEBUG=@caviar/cli 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/caviar-cli.git"
},
"keywords": [
"@caviar/cli"
],
"engines": {
"node": ">= 6"
},
"ava": {
"babel": false,
"files": [
"test/*.test.js"
]
},
"author": "caviarjs",
"license": "MIT",
"bugs": {
"url": "https://github.com/caviarjs/caviar-cli/issues"
},
"devDependencies": {
"@ostai/eslint-config": "^3.5.0",
"ava": "^2.4.0",
"codecov": "^3.6.1",
"eslint": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"execa": "^2.0.4",
"nyc": "^14.1.1",
"test-fixture": "^2.4.1"
},
"dependencies": {
"bin-tool": "^2.2.2",
"chalk": "^2.4.2",
"err-object": "^5.1.4",
"is-path-inside": "^3.0.1",
"resolve-from": "^5.0.0",
"semver": "^6.3.0"
}
}