-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "node-flask",
"description": "Microserver for nodejs based based on python flask.",
"version": "1.5.4",
"author": "Connor McCutcheon",
"bugs": "github.com/ccutch/node-flask/issues",
"dependencies": {
"koa": "^2.0.0",
"koa-route": "^3.1.0",
"lodash": "^4.11.1",
"require-dir": "^0.3.0"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2016-node5": "^1.1.2",
"babel-register": "^6.7.2",
"mocha": "^2.4.5"
},
"homepage": "ccutch.github.io/node-flask",
"keywords": [
"decorators",
"es2016",
"koa",
"router",
"server"
],
"license": "MIT",
"main": "dist/flask.js",
"repository": {
"type": "git",
"url": "https://github.com/ccutch/node-flask.git"
},
"scripts": {
"example": "babel-node example/server",
"build": "babel lib --out-dir dist",
"prepublish": "npm run build",
"test": "mocha --compilers js:babel-register tests/*"
},
"standard": {
"parser": "babel-eslint"
}
}