UNPKG

897 BJSONView Raw
1{
2 "name": "velocityjs",
3 "description": "Velocity Template Language(VTL) for JavaScript",
4 "version": "1.0.0",
5 "license": "MIT",
6 "keywords": [
7 "velocity template"
8 ],
9 "homepage": "http://git.shepherdwind.com/velocity.js/",
10 "repository": {
11 "type": "git",
12 "url": "git://github.com/shepherdwind/velocity.js.git"
13 },
14 "engines": {
15 "node": ">=0.8.0"
16 },
17 "main": "src/velocity.js",
18 "bin": {
19 "velocity": "bin/velocity"
20 },
21 "browser": {
22 "fs": false
23 },
24 "devDependencies": {
25 "coveralls": "~2.11.2",
26 "istanbul": "~0.3.5",
27 "jison": ">=0.3",
28 "mocha": ">=1.7.2",
29 "mocha-lcov-reporter": "0.0.1",
30 "should": "^7.0.1"
31 },
32 "scripts": {
33 "test": "make test",
34 "pub": "npm version patch && npm publish && git push origin master && git push origin --tag"
35 },
36 "spm": {
37 "main": "index.js",
38 "buildArgs": "--skip fs,path"
39 }
40}