-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"name": "ruder",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "node_modules/.bin/babel-node lib/index.js",
"start-watch": "node_modules/.bin/nodemon lib/index.js --exec babel-node",
"test": "mocha --compilers js:babel-register --require babel-polyfill",
"test-watch": "mocha --compilers js:babel-register --require babel-polyfill --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gempesaw/ruder.git"
},
"keywords": [
"router",
"http",
"micro",
"rude"
],
"author": "Minh Nguyen",
"license": "ISC",
"bugs": {
"url": "https://github.com/gempesaw/ruder/issues"
},
"homepage": "https://github.com/gempesaw/ruder#readme",
"dependencies": {
"body-parser": "^1.15.2",
"express": "latest",
"request": "^2.78.0",
"request-promise-native": "^1.0.3",
"router": "^1.1.4"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-3": "^6.17.0",
"chai": "^3.5.0",
"mocha": "^3.1.2",
"nodemon": "^1.11.0",
"supertest": "^2.0.1"
}
}