-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "koa-resource-routes",
"version": "0.5.0",
"description": "Easy RESTful resource routing with Koa",
"main": "index.js",
"scripts": {
"build": "gulp build",
"prepublish": "npm run test && gulp build",
"test": "mocha --compilers js:babel/register --recursive",
"lint": "gulp lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amsardesai/koa-resource-routes.git"
},
"author": "Ankit Sardesai",
"license": "MIT",
"bugs": {
"url": "https://github.com/amsardesai/koa-resource-routes/issues"
},
"homepage": "https://github.com/amsardesai/koa-resource-routes#readme",
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
"chai": "^3.3.0",
"eslint-config-airbnb": "^0.1.0",
"gulp": "^3.9.0",
"gulp-babel": "^5.2.1",
"gulp-eslint": "^1.0.0",
"gulp-size": "^2.0.0",
"koa": "^1.0.0",
"koa-hello-world": "^1.0.1",
"mocha": "^2.3.3",
"supertest": "^1.1.0"
},
"dependencies": {
"koa-compose": "^2.3.0",
"path-to-regexp": "^1.2.1"
}
}