-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.51 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
{
"name": "forester",
"version": "0.6.1",
"description": "Rest API",
"main": "index.js",
"scripts": {
"version": "npm run clean && npm run build && git add -A build",
"clean": "rm -r ./build && mkdir ./build",
"build": "babel -d ./build ./lib -s",
"example": "nodemon example/example.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/foresterjs/forester.git"
},
"keywords": [
"rest",
"api"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/foresterjs/forester/issues"
},
"homepage": "https://github.com/foresterjs/forester#readme",
"devDependencies": {
"babel": "^6.0.15",
"babel-cli": "^6.1.2",
"babel-plugin-transform-async-to-generator": "^6.0.14",
"babel-preset-es2015": "^6.3.13",
"nodemon": "^1.8.0",
"forester-explorer": "^0.1.4",
"forester-auth": "^0.1.4"
},
"dependencies": {
"babel-polyfill": "^6.3.14",
"es6-error": "^2.0.2",
"koa": "2.0.0-alpha.3",
"koa-bodyparser": "^3.0.0",
"koa-compose": "^3.0.0",
"koa-convert": "^1.2.0",
"koa-mount": "git://github.com/koajs/mount.git#7796702a36e6ef6b62c8eae13a234fbf0d974873",
"koa-qs": "^2.0.0",
"koa-send": "^3.1.0",
"koa-simple-router": "^0.2.0",
"koa-static": "^1.4.3",
"mschema": "^0.5.5",
"promised-mongo": "^1.2.0",
"tingodb": "^0.4.2",
"traverse": "^0.6.6"
},
"babel": {
"plugins": [
"transform-async-to-generator"
],
"presets": [
"es2015"
],
"ignore": false
}
}