-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.35 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
{
"name": "koan-views",
"version": "0.0.4",
"description": "Enhanced template rendering using ES6 generators",
"keywords": [
"koa",
"koajs",
"koa.js",
"koan",
"koanjs",
"koan.js",
"template",
"views",
"rendering",
"layout",
"partial",
"generators",
"es6",
"harmony"
],
"dependencies": {
"co-views": "^0.2.0",
"co-render": "0.0.1",
"co": "^3.0.6",
"debug": "^1.0.0"
},
"devDependencies": {
"mocha": "^1.20.0",
"should": "~4.0.1",
"supertest": "^0.13.0",
"istanbul": "https://github.com/gotwarlost/istanbul/archive/harmony.tar.gz",
"coveralls": "^2.10.0",
"pre-commit": "0.0.7",
"ejs": "^1.0.0"
},
"scripts": {
"test": "PORT=9999 NODE_ENV=test node --harmony ./node_modules/istanbul/lib/cli.js cover ./node_modules/.bin/_mocha --report lcovonly -- --recursive test/**/*.js -R spec",
"posttest": "cat ./coverage/lcov.info | (./node_modules/coveralls/bin/coveralls.js || true) && rm -rf ./coverage"
},
"engines": {
"node": ">= 0.11.3"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com:koanjs/koan-views.git"
},
"bugs": {
"url": "http://github.com/koanjs/koan-views/issues"
},
"author": "Ruslan Bredikhin",
"license": {
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
}