-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·61 lines (61 loc) · 1.57 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
{
"name": "Markoa",
"version": "1.0.0",
"description": "Marko template engine + Koa + Lasso.js starter kit.",
"main": "server.js",
"engines": {
"node": ">=4.0.0",
"npm": ">=3.0.0"
},
"scripts": {
"test": "mocha -c --compilers js:babel-core/register | bunyan -o short -l warn",
"dev": "browser-refresh | bunyan -o short",
"start": "NODE_ENV=production node server.js | bunyan -o short"
},
"repository": {
"type": "git",
"url": "https://github.com/leonli/lkm-starter"
},
"keywords": [
"Markoa",
"Lasso.js",
"Koa",
"Marko",
"Template engine",
"starter kit"
],
"author": "Leon Li <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/leonli/lkm-starter/issues"
},
"homepage": "https://github.com/leonli/lkm-starter",
"dependencies": {
"babel-core": "^6.0.20",
"babel-polyfill": "^6.0.16",
"babel-preset-es2015": "^6.1.2",
"browser-refresh-taglib": "^1.0.3",
"bunyan": "^1.5.1",
"jquery": "^2.1.4",
"koa": "^1.1.2",
"koa-bunyan-logger": "^1.3.0",
"koa-compress": "^1.0.8",
"koa-generic-session": "^1.9.2",
"koa-logger": "^1.3.0",
"koa-router": "^5.2.3",
"koa-static": "^1.5.1",
"lasso": "^1.12.1",
"lasso-less": "^2.1.2",
"marko": "^2.7.28"
},
"devDependencies": {
"babel-eslint": "^4.1.3",
"browser-refresh": "^1.4.10",
"browser-refresh-client": "^1.1.4",
"eslint": "^1.8.0",
"eslint-config-standard": "^4.4.0",
"eslint-plugin-standard": "^1.3.1",
"mocha": "^2.3.3",
"supertest": "^1.1.0"
}
}