forked from paularmstrong/swig
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.37 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "swig",
"version": "1.4.2",
"description": "A simple, powerful, and extendable templating engine for node.js and browsers, similar to Django, Jinja2, and Twig.",
"keywords": [
"template",
"templating",
"html",
"django",
"jinja",
"twig",
"express",
"block"
],
"repository": {
"type": "git",
"url": "http://github.com/paularmstrong/swig.git"
},
"author": "Paul Armstrong <[email protected]>",
"dependencies": {
"uglify-js": "~2.4",
"optimist": "~0.6"
},
"devDependencies": {
"lodash": "~1.3.1",
"express": "~3",
"nodelint": "~0.6",
"mocha": "1.12.0",
"expect.js": "~0.2",
"still": "0.0.7",
"less": "~1.4",
"mocha-phantomjs": "~3.1",
"blanket": "~1.1",
"travis-cov": "~0.2",
"phantomjs": "~1.9.1",
"browserify": "~2",
"file": "~0.2",
"jsdoc": "3.2.0"
},
"license": "MIT",
"main": "index",
"engines": {
"node": ">=0.10.0"
},
"bin": {
"swig": "./bin/swig.js"
},
"scripts": {
"prepublish": "npm prune && make build",
"test": "make lint && make test reporter=spec && make test-browser && make coverage cov-reporter=travis-cov",
"travis-cov": {
"threshold": 95
}
},
"config": {
"blanket": {
"pattern": "swig/lib"
}
},
"bugs": {
"url": "https://github.com/paularmstrong/swig/issues"
}
}