-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
80 lines (80 loc) · 2.47 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "hbs-cli",
"version": "1.4.1",
"description": "A CLI tool for rendering Handlebars templates",
"homepage": "http://github.com/keithamus/hbs-cli/issues",
"bugs": "http://github.com/keithamus/hbs-cli/issues",
"license": "MIT",
"author": "Keith Cirkel (http://keithcirkel.co.uk)",
"files": [
"lib/*.js"
],
"main": "lib/index.js",
"bin": {
"hbs": "lib/index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/keithamus/hbs-cli.git"
},
"scripts": {
"lint": "eslint src test --ignore-path .gitignore",
"prepublish": "babel src -d lib",
"pretest": "npm run lint",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "npm run test:run:1 && npm run test:verify:1 && npm run test:run:2 && npm run test:verify:2 && npm run test:run:3 && npm run test:verify:3",
"test:run:1": "node . -H handlebars-helper-br -D ./test/data.json -o test test/test-1.hbs",
"test:verify:1": "diff test/test-1.html test/verify-1.html",
"test:run:2": "node . -s -H handlebars-helper-br -D ./test/data.json test/test-1.hbs > test/test-2.html",
"test:verify:2": "diff test/test-2.html test/verify-1.html",
"test:run:3": "cat ./test/data.json | node . -s -H handlebars-helper-br --stdin test/test-1.hbs > test/test-3.html",
"test:verify:3": "diff test/test-3.html test/verify-1.html",
"watch": "npm run prepublish -- -w"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "npm test"
}
},
"babel": {
"compact": false,
"ignore": "node_modules",
"loose": "all",
"optional": "runtime",
"retainLines": true,
"stage": 2
},
"eslintConfig": {
"extends": "strict",
"parser": "babel-eslint",
"rules": {
"no-console": 0,
"no-process-exit": 0
}
},
"dependencies": {
"babel-runtime": "^5.8.34",
"debug": "^2.2.0",
"fs-promise": "^0.3.1",
"get-stdin": "^8.0.0",
"glob-promise": "^1.0.4",
"handlebars": "^4.0.5",
"lodash.merge": "^4.6.2",
"minimist": "^1.2.0",
"mkdirp-then": "^1.2.0",
"resolve": "^1.1.6"
},
"devDependencies": {
"babel": "^5.8.34",
"babel-eslint": "^6.1.1",
"eslint": "^1.10.3",
"eslint-config-strict": "^7.0.4",
"eslint-plugin-filenames": "^0.2.0",
"ghooks": "^1.0.1",
"handlebars-helper-br": "^0.1.0",
"semantic-release": "^4.3.5",
"travis-after-all": "^1.4.4",
"validate-commit-msg": "^2.8.2"
}
}