-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
45 lines (45 loc) · 1.36 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
{
"name": "vash",
"description": "Razor syntax for JS templating",
"version": "0.13.0",
"author": "Andrew Petersen <[email protected]>",
"homepage": "https://github.com/kirbysayshi/vash",
"license": "MIT",
"bin": {
"vash": "./bin/vash"
},
"keywords": [
"razor",
"parser",
"template",
"express"
],
"repository": {
"type": "git",
"url": "git://github.com/kirbysayshi/vash"
},
"main": "index.js",
"engines": {
"node": ">= 0.10"
},
"scripts": {
"prepublishOnly": "npm run test && npm run build",
"coverage": "VASHPATH=../../index.js VASHRUNTIMEPATH=../../runtime.js browserify -t envify -t coverify test/vows/vash.test.js | node | coverify",
"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",
"test": "VASHPATH=../../index.js VASHRUNTIMEPATH=../../runtime.js vows test/vows/vash.*.js --spec",
"docs": "scripts/docs.sh",
"docs-dev": "scripts/docs-dev.sh"
},
"dependencies": {
"commander": "^5.0.0",
"debug": "^4.1.1",
"uglify-js": "^3.8.0"
},
"devDependencies": {
"browserify": "^16.5.0",
"coverify": "^1.5.1",
"envify": "^4.1.0",
"marked": "^0.8.0",
"vows": "^0.8.3"
}
}