-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
57 lines (57 loc) · 1.36 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
{
"name": "htmling",
"version": "0.0.8",
"description": "Polymer compatible HTML5 based templating syntax for node.js.",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha",
"watch": "npm run peg && mocha -- watch",
"peg": "pegjs ./src/parser.pegjs ./lib/parser.js",
"jshint": "jshint ./lib",
"pretest": "npm run peg && npm run jshint",
"coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha"
},
"bin": {
"htmling": "./bin/htmling"
},
"repository": {
"type": "git",
"url": "https://github.com/codemix/htmling"
},
"keywords": [
"html",
"template",
"html5",
"view",
"polymer"
],
"author": "Charles Pick <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/codemix/htmling/issues"
},
"homepage": "https://github.com/codemix/htmling",
"devDependencies": {
"expect.js": "~0.3.1",
"pegjs": "~0.8.0",
"should": "~4.0.4",
"mocha": "~1.20.1",
"istanbul": "~0.2.11",
"bluebird": "~2.1.2",
"jshint": "~2.5.1"
},
"dependencies": {
"estraverse": "~1.5.0",
"escodegen": "~1.3.3",
"yargs": "~1.2.3",
"mkdirp": "~0.5.0",
"classing": "0.0.9",
"esprima": "~1.2.2",
"fast.js": "0.0.3",
"node-watch": "~0.3.4",
"html-minifier": "~1.2.0"
}
}