-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.26 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
{
"name": "js-html",
"version": "0.4.1",
"description": "Blend server side JavaScript with HTML pages",
"main": "lib/index.js",
"bin": {
"jshtml": "./bin/index.js",
"js-html": "./bin/index.js"
},
"directories": {
"test": "test"
},
"devDependencies": {
"nodeunit": "~0.9.1",
"colors": "~1.1.2",
"jscs": "^2.5.1",
"jshint": "^2.8.0",
"minimist": "^1.2.0"
},
"scripts": {
"all": "npm run fix && npm test && npm run bench",
"test": "node ./node_modules/nodeunit/bin/nodeunit --reporter nested ./test/test.js && node ./test/check.js",
"bench": "node ./test/benchmark.js",
"fix": "node ./test/check.js --fix"
},
"keywords": [
"jshtml",
"js-html",
"javascript",
"ecmascript",
"html"
],
"contributors": [
{
"name": "Bryan Way",
"email": "bryanwayb@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/bryanwayb/js-html.git"
},
"bugs": {
"url": "https://github.com/bryanwayb/js-html/issues",
"email": "bryanwayb@gmail.com"
},
"license": "MIT",
"dependencies": {
"acorn": "^2.6.4",
"escodegen": "^1.7.0",
"esmangle": "^1.0.1",
"helpout": "^0.1.3",
"js-html-compiler": "^0.4.1",
"minify": "^2.0.2"
}
}