-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.02 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
{
"name": "ocular.js",
"version": "0.1.0",
"description": "Scrutinizer Ocular JS port",
"main": "index.js",
"bin": {
"ocular": "./index.js"
},
"scripts": {
"test": "mocha",
"coverage": "nyc npm test"
},
"engines": {
"node": ">=0.11.12"
},
"repository": {
"type": "git",
"url": "https://github.com/alekitto/ocular.js.git"
},
"keywords": [
"ocular",
"scrutinizer",
"code-coverage"
],
"author": "Alessandro Chitolina <alekitto@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alekitto/ocular.js/issues"
},
"dependencies": {
"commander": "^2.9.0"
},
"devDependencies": {
"chai": "^3.5.0",
"fs-extra": "^0.30.0",
"mocha": "^3.1.2",
"nyc": "^11.3.0",
"tmp": "0.0.29"
},
"nyc": {
"per-file": true,
"include": [
"src/**/*.js",
"index.js"
],
"exclude": [
"test/**"
],
"reporter": [
"text-summary",
"clover"
],
"all": true,
"report-dir": "./coverage"
}
}