-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
75 lines (75 loc) · 1.86 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
{
"name": "templatizer",
"description": "Simple solution for compiling jade templates into vanilla JS functions for blazin' fast client-side use.",
"version": "2.0.7",
"author": "Henrik Joreteg <henrik@andyet.net>",
"bin": "./bin/cli",
"bugs": "https://github.com/HenrikJoreteg/templatizer/issues",
"contributors": [
{
"name": "Beau Sorensen",
"email": "mail@beausorensen.com"
},
{
"name": "Luke Karrys",
"email": "luke@andyet.net"
}
],
"dependencies": {
"async": "^2.0.1",
"escodegen": "^1.8.1",
"esprima": "^2.5.0",
"falafel": "^2.0.0",
"glob": "^7.1.0",
"jade": "^1.11.0",
"lodash": "^4.16.2",
"minimatch": "^3.0.3",
"minimist": "^1.1.3",
"uglify-js": "^2.4.24",
"walkdir": "0.0.11"
},
"devDependencies": {
"@lukekarrys/jade-runtime": "^1.11.1",
"browserify": "^13.1.0",
"colors": "^1.1.2",
"http-server": "^0.9.0",
"jshint": "^2.9.3",
"mkdirp": "^0.5.1",
"phantomjs-prebuilt": "^2.1.12",
"precommit-hook": "^3.0.0",
"rimraf": "^2.5.4",
"run-browser": "^2.0.2",
"tap-spec": "^4.1.1",
"tape": "^4.6.0",
"tape-run": "^2.1.4",
"underscore": "^1.8.3",
"yetify": "0.1.0"
},
"homepage": "https://github.com/HenrikJoreteg/templatizer",
"keywords": [
"browser",
"jade",
"templates"
],
"license": "MIT",
"main": "templatizer.js",
"peerDependencies": {
"@lukekarrys/jade-runtime": "^1.11.1"
},
"pre-commit": [
"lint",
"validate",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/HenrikJoreteg/templatizer.git"
},
"scripts": {
"benchmark": "node benchmark/speedtest.js",
"lint": "jshint .",
"start": "run-browser test/index.js",
"test": "node test/build && browserify test/index.js | tape-run -b phantom | tap-spec",
"validate": "npm ls"
}
}