-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 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
{
"name": "koa-render-view",
"version": "2.0.0-alpha.1",
"description": "koa render template middleware",
"main": "./src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "jasmine test",
"build": "babel -w src/ -d dist -s",
"watch": "babel -w src/ -d dist -s --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arshtepe/koa-render-view.git"
},
"keywords": [
"koa",
"koa2",
"koa-view",
"render",
"template"
],
"author": "Artem Shtepenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/arshtepe/koa-render-view/issues"
},
"homepage": "https://github.com/arshtepe/koa-render-view#readme",
"dependencies": {
"babel-core": "^6.26.0",
"combined-stream": "^1.0.6",
"consolidate": "^0.14.5",
"fs-extra": "^3.0.1",
"koa-send": "^4.1.3",
"lodash": "^4.17.5",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"ejs": "^2.5.6",
"jasmine": "^2.99.0",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.1",
"koa": "^2.5.0",
"supertest": "^3.0.0"
}
}