UNPKG

1.88 kBJSONView Raw
1{
2 "name": "templatizer",
3 "description": "Simple solution for compiling jade templates into vanilla JS functions for blazin' fast client-side use.",
4 "version": "1.2.1",
5 "author": "Henrik Joreteg <henrik@andyet.net>",
6 "bin": "./bin/cli",
7 "bugs": "https://github.com/HenrikJoreteg/templatizer/issues",
8 "contributors": [
9 {
10 "name": "Beau Sorensen",
11 "email": "mail@beausorensen.com"
12 },
13 {
14 "name": "Luke Karrys",
15 "email": "luke@andyet.net"
16 }
17 ],
18 "dependencies": {
19 "escodegen": "0.0.26",
20 "esprima": "^1.2.1",
21 "falafel": "^0.3.1",
22 "glob": "^4.3.5",
23 "jade": "^1.7.0",
24 "lodash": "^3.2.0",
25 "minimist": "^0.1.0",
26 "uglify-js": "^2.4.0",
27 "walkdir": "0.0.7"
28 },
29 "devDependencies": {
30 "browserify": "^3.43.0",
31 "colors": "^0.6.0",
32 "http-server": "^0.6.1",
33 "jshint": "^2.5.0",
34 "phantomjs": "^1.9.7-15",
35 "precommit-hook": "^1.0.7",
36 "testee": "^0.1.1",
37 "underscore": "^1.7.0",
38 "yetify": "0.1.0"
39 },
40 "homepage": "https://github.com/HenrikJoreteg/templatizer",
41 "keywords": [
42 "templates",
43 "browser",
44 "jade"
45 ],
46 "license": "MIT",
47 "main": "templatizer.js",
48 "repository": {
49 "type": "git",
50 "url": "https://github.com/HenrikJoreteg/templatizer.git"
51 },
52 "scripts": {
53 "benchmark": "node benchmark/speedtest.js",
54 "browserify": "./node_modules/.bin/browserify test/browserify-test.js > test/tests-bundle.js",
55 "build": "npm run copy-runtime && node build.js",
56 "copy-runtime": "cp node_modules/jade/lib/runtime.js jaderuntime.js",
57 "copy-underscore": "cp node_modules/underscore/underscore.js test/underscore.js",
58 "setup-test": "npm run build && npm run browserify && npm run copy-underscore",
59 "start": "npm run setup-test && http-server -p 3003 test/",
60 "test": "npm run setup-test && testee test/index.html"
61 }
62}