-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
52 lines (52 loc) · 1.38 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
{
"name": "metalsmith-json-to-files",
"version": "2.0.0",
"description": "A metalsmith plugin to generate files from JSON",
"main": "lib/index.js",
"scripts": {
"lint": "eslint --cache --fix .",
"test": "mocha",
"posttest": "npm run lint",
"dev-test": "nodemon --exec 'npm test'",
"version": "npm test",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/woodyrew/metalsmith-json-to-files.git"
},
"keywords": [
"metalsmith",
"static-site",
"json",
"generator",
"files"
],
"author": "Woody Goodricke <[email protected]>",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/woodyrew/metalsmith-json-to-files/issues"
},
"homepage": "https://github.com/woodyrew/metalsmith-json-to-files#readme",
"dependencies": {
"async": "^2.6.1",
"debug": "^4.1.1",
"joi": "^14.3.1",
"jsonfile": "^5.0.0",
"lodash.assign": "^4.2.0",
"lodash.get": "^4.4.2",
"slug-component": "^1.1.0"
},
"devDependencies": {
"assert-dir-equal": "^1.1.0",
"chai": "^4.2.0",
"eslint": "^5.13.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-prettier": "^3.0.1",
"handlebars": "^4.0.12",
"metalsmith": "^2.3.0",
"metalsmith-templates": "^0.7.0",
"mocha": "^5.2.0",
"prettier": "^1.16.4"
}
}