forked from shepherdwind/velocity.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 935 Bytes
/
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
{
"name": "velocityjs",
"description": "Velocity Template Language(VTL) for JavaScript",
"version": "1.1.3",
"license": "MIT",
"keywords": [
"velocity template"
],
"homepage": "http://git.shepherdwind.com/velocity.js/",
"repository": {
"type": "git",
"url": "git://github.com/shepherdwind/velocity.js.git"
},
"engines": {
"node": ">=0.8.0"
},
"main": "src/velocity.js",
"bin": {
"velocity": "bin/velocity"
},
"browser": {
"fs": false,
"path": false
},
"devDependencies": {
"coveralls": "~2.11.2",
"istanbul": "~0.3.5",
"jison": ">=0.3",
"mocha": ">=1.7.2",
"mocha-lcov-reporter": "0.0.1",
"should": "^7.0.1"
},
"scripts": {
"test": "mocha tests --require should",
"pub": "npm version patch && npm publish && git push origin master && git push origin --tag"
},
"spm": {
"main": "index.js",
"buildArgs": "--skip fs,path"
}
}