-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 870 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
{
"name": "metalsmith-inspect",
"version": "1.0.2",
"description": "Metasmith plugin to inspect/debug your file objects",
"main": "inspect.js",
"scripts": {
"test": "nyc --reporter=lcov tape test/test.js",
"coverage": "nyc --reporter=text-lcov report | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MorganConrad/metalsmith-inspect.git"
},
"keywords": [
"metalsmith",
"debug",
"inspect",
"file",
"objects"
],
"devDependencies": {
"coveralls": "^3.1",
"nyc": "^15.1.0",
"tape": "^5.3"
},
"files": [],
"author": "Morgan Conrad <[email protected]> (http://flyingspaniel.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/MorganConrad/metalsmith-inspect/issues"
},
"homepage": "https://github.com/MorganConrad/metalsmith-inspect#readme"
}