-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
74 lines (74 loc) · 1.94 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
{
"name": "clayhandlebars",
"version": "5.0.2",
"description": "A collection of helpers and partials for handlebars",
"main": "index.js",
"browser": "dist/browser.js",
"directories": {
"test": "test"
},
"files": [
"dist",
"helpers",
"partials",
"index.js",
"third-party-helpers.js"
],
"scripts": {
"lint": "./node_modules/.bin/eslint helpers partials test index.js",
"test-local": "npm run lint && istanbul cover _mocha",
"test": "npm run lint && istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"generate-readme": "node docs/generate-readme.js && git add README.md",
"build": "webpack",
"watch": "webpack -w",
"prepublish": "webpack -p"
},
"pre-commit": [
"generate-readme"
],
"repository": {
"type": "git",
"url": "git+https://github.com/clay/handlebars.git"
},
"keywords": [
"handlebars"
],
"author": "New York Media",
"license": "MIT",
"bugs": {
"url": "https://github.com/clay/handlebars/issues"
},
"homepage": "https://github.com/clay/handlebars#readme",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"chai": "^3.5.0",
"chalk": "^1.1.3",
"coveralls": "^3.1.0",
"documentation": "4.0.0-beta15",
"eslint": "^4.15.0",
"handlebars-template-loader": "^0.7.0",
"istanbul": "^0.4.5",
"lodash-webpack-plugin": "^0.11.2",
"mocha": "^5.2.0",
"pre-commit": "^1.2.2",
"webpack": "^2.2.1"
},
"dependencies": {
"clay-log": "^1.5.3",
"comma-it": "0.0.7",
"date-fns": "^1.30.1",
"glob": "^7.1.6",
"handlebars": "^4.7.6",
"he": "^1.2.0",
"helper-yaml": "^0.1.0",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.15",
"outdent": "^0.3.0",
"randomstring": "^1.1.5",
"sinon": "^2.1.0",
"speakingurl": "^11.0.0",
"striptags": "^2.1.1"
}
}