forked from cdierkens/handlebars-to-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.39 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": "handlebars-to-html",
"version": "1.0.3",
"description": "Generate static html files from handlebars templates.",
"main": "dist/handlebars-to-html.js",
"bin": "dist/index.js",
"scripts": {
"build": "babel src -d dist",
"check": "npm-run-all clean --parallel build test lint",
"clean": "rimraf dist",
"lint": "npm-run-all --parallel lint:*",
"lint:js-quality": "jshint .",
"lint:js-style": "jscs .",
"prebuild": "mkdirp dist",
"prepublish": "npm run check",
"test": "mocha --compilers js:babel-register"
},
"pre-commit": "check",
"repository": {
"type": "git",
"url": "git+https://cdierkens@github.com/cdierkens/handlebars-to-html.git"
},
"keywords": [
"handlebars",
"html",
"templates",
"partials"
],
"author": "Christopher Dierkens <cjdierkens@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cdierkens/handlebars-to-html/issues"
},
"homepage": "https://github.com/cdierkens/handlebars-to-html#readme",
"dependencies": {
"commander": "^2.9.0",
"glob": "^7.0.0",
"handlebars": "^4.0.5",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.5.2",
"jscs": "^2.10.1",
"jshint": "^2.9.1",
"mocha": "^2.4.5",
"npm-run-all": "^1.5.1",
"rimraf": "^2.5.2",
"should": "^8.2.2"
}
}