-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "metalsmith-pagination",
"version": "1.5.0",
"description": "A Metalsmith plugin for paginating arrays and collections.",
"main": "metalsmith-pagination.js",
"scripts": {
"lint": "standard",
"test-spec": "mocha -R spec --bail",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec --bail",
"test": "npm run lint && npm run test-cov"
},
"repository": {
"type": "git",
"url": "git://github.com/blakeembrey/metalsmith-pagination.git"
},
"keywords": [
"metalsmith",
"pagination",
"collections"
],
"author": {
"name": "Blake Embrey",
"email": "hello@blakeembrey.com",
"url": "http://blakeembrey.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/blakeembrey/metalsmith-pagination/issues"
},
"homepage": "https://github.com/blakeembrey/metalsmith-pagination",
"devDependencies": {
"chai": "^4.0.0",
"istanbul": "^0.4.5",
"mocha": "^6.2.2",
"standard": "^14.3.1"
},
"dependencies": {
"to-function": "^2.0.5",
"xtend": "^4.0.0"
}
}