UNPKG

1.41 kBJSONView Raw
1{
2 "name": "vash",
3 "description": "Razor syntax for JS templating",
4 "version": "0.12.1",
5 "author": "Andrew Petersen <senofpeter@gmail.com>",
6 "homepage": "https://github.com/kirbysayshi/vash",
7 "bin": {
8 "vash": "./bin/vash"
9 },
10 "keywords": [
11 "razor",
12 "parser",
13 "template",
14 "express"
15 ],
16 "repository": {
17 "type": "git",
18 "url": "git://github.com/kirbysayshi/vash"
19 },
20 "main": "index.js",
21 "engines": {
22 "node": ">= 0.10"
23 },
24 "scripts": {
25 "prepublish": "npm run test && npm run build",
26 "coverage": "VASHPATH=../../index.js VASHRUNTIMEPATH=../../runtime.js browserify -t envify -t coverify test/vows/vash.test.js | node | coverify",
27 "build": "browserify index.js --standalone vash > build/vash.js && browserify --standalone vash runtime.js > build/vash-runtime.js && browserify --standalone vash --external fs --external path lib/helpers/index.js > build/vash-runtime-all.js",
28 "test": "VASHPATH=../../index.js VASHRUNTIMEPATH=../../runtime.js vows test/vows/vash.*.js --spec",
29 "docs": "scripts/docs.sh",
30 "docs-dev": "scripts/docs-dev.sh"
31 },
32 "dependencies": {
33 "commander": "~1.1.1",
34 "debug": "^2.2.0",
35 "uglify-js": "^2.6.2"
36 },
37 "devDependencies": {
38 "browserify": "^13.0.0",
39 "coverify": "^1.4.1",
40 "envify": "^3.4.0",
41 "jshint": "0.8.0",
42 "marked": "~0.2.8",
43 "semver": "~1",
44 "vows": "^0.8.1"
45 }
46}