forked from keithamus/hbs-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 2.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "hbs-cli",
"version": "1.5.0",
"description": "A CLI tool for rendering Handlebars templates fork from http://github.com/keithamus/hbs-cli",
"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/src/index.js",
"bin": {
"hbs": "lib/src/index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/heurtematte/hbs-cli.git"
},
"scripts": {
"build": "npx tsc",
"lint": "eslint src/* --ignore-path .gitignore",
"prepublish": "npx tsc",
"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"
},
"dependencies": {
"debug": "^4.3.4",
"glob-promise": "^6.0.5",
"handlebars": "^4.7.8",
"lodash.merge": "^4.6.2",
"minimist": "^1.2.8",
"resolve": "^1.22.8"
},
"devDependencies": {
"@types/fs-promise": "^2.0.0",
"@types/lodash.merge": "^4.6.8",
"@types/minimist": "^1.2.4",
"@types/resolve": "^1.20.4",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"eslint-config-strict": "^14.0.1",
"eslint-plugin-filenames": "^1.3.2",
"handlebars-helper-br": "^0.1.0",
"typescript": "^5.3.2"
}
}