-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
26 lines (26 loc) · 861 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
{
"name": "metalsmith-hooks",
"version": "0.1.2-pre",
"description": "A Metalsmith plugin to add arbitrary page hooks to your build.",
"keywords": ["metalsmith", "hooks", "page", "plugin", "callback", "per-page"],
"main": "index.js",
"repository": "https://github.com/benwilhelm/metalsmith-hooks.git",
"author": "Ben Wilhelm <[email protected]>",
"license": "MIT",
"devDependencies": {
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"jasmine": "^2.7.0",
"npm-bump": "^0.0.22"
},
"scripts": {
"test": "jasmine",
"coverage": "istanbul cover node_modules/jasmine/bin/jasmine.js",
"coveralls": "yarn run coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf coverage/*",
"bump": "npm-bump"
},
"dependencies": {
"async": "^2.5.0",
"lodash": "^4.17.4"
}
}