-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "koa-swig",
"version": "2.2.1",
"description": "Koa view render based on Swig, support tags, filters, and extensions.",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/mocha --harmony -R spec -t 5000 test/*.js",
"test-cov": "node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -R dot -t 5000 test/*.js",
"test-travis": "node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -R dot -t 5000 test/*.js"
},
"keywords": [
"koa",
"render",
"view",
"swig",
"locals",
"flash"
],
"author": "fundon <[email protected]>",
"license": "MIT",
"devDependencies": {
"istanbul-harmony": "*",
"koa": "^1.x",
"koa-flash": "^1.x",
"koa-session": "^3.x",
"mocha": "^3.x",
"should": "^11.x",
"supertest": "^2.x"
},
"dependencies": {
"debug": "^2.x",
"swig-templates": "^2.0.2",
"thenify": "^3.1.0",
"utils-merge": "^1.0.0"
},
"repository": "koa-modules/swig",
"files": [
"index.js"
]
}