UNPKG

1.81 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.0.0",
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 "jade": "^1.5.0",
23 "minimist": "^0.1.0",
24 "uglify-js": "^2.4.0",
25 "underscore": "^1.5.1",
26 "walkdir": "0.0.7"
27 },
28 "devDependencies": {
29 "browserify": "^3.43.0",
30 "colors": "^0.6.0",
31 "http-server": "^0.6.1",
32 "jshint": "^2.5.0",
33 "precommit-hook": "^0.4.1",
34 "testee": "0.0.13",
35 "yetify": "0.1.0"
36 },
37 "homepage": "https://github.com/HenrikJoreteg/templatizer",
38 "keywords": [
39 "templates",
40 "browser",
41 "jade"
42 ],
43 "license": "MIT",
44 "main": "templatizer.js",
45 "repository": {
46 "type": "git",
47 "url": "https://github.com/HenrikJoreteg/templatizer.git"
48 },
49 "scripts": {
50 "copy-runtime": "cp node_modules/jade/lib/runtime.js jaderuntime.js",
51 "copy-underscore": "cp node_modules/underscore/underscore.js test/underscore.js",
52 "benchmark": "node benchmark/speedtest.js",
53 "build": "npm run copy-runtime && node build.js",
54 "browserify": "./node_modules/.bin/browserify test/browserify-test.js > test/tests-bundle.js",
55 "setup-test": "npm run build && npm run browserify && npm run copy-underscore",
56 "test": "npm run setup-test && testee test/index.html",
57 "browser-test": "npm run setup-test && http-server -p 3003 test/"
58 }
59}