-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 846 Bytes
/
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
{
"name": "objcov",
"version": "2.0.0",
"description": "Watch a javascript object and get statistics about how it has been used within your code.",
"main": "index.js",
"scripts": {
"test": "node test"
},
"keywords": [
"coverage",
"test",
"quality",
"code coverage",
"test coverage"
],
"author": {
"name": "Mark Wylde",
"email": "me@markwylde.com",
"url": "https://github.com/markwylde"
},
"license": "MIT",
"dependencies": {
"dot-object": "^2.1.4"
},
"directories": {
"test": "test"
},
"devDependencies": {
"basictap": "^1.3.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markwylde/objcov.git"
},
"bugs": {
"url": "https://github.com/markwylde/objcov/issues"
},
"homepage": "https://github.com/markwylde/objcov#readme"
}