-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 895 Bytes
/
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
{
"name": "simple-nodejs-server",
"version": "1.0.0",
"description": "Simple NodeJS server with the http module to serve local data in the development environment",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node --require 'babel-register' src/index.js",
"watch": "nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/victordelval/simple-nodejs-server.git"
},
"keywords": [
"nodejs",
"server",
"http",
"api",
"json"
],
"author": "Víctor del Val",
"license": "ISC",
"bugs": {
"url": "https://github.com/victordelval/simple-nodejs-server/issues"
},
"homepage": "https://github.com/victordelval/simple-nodejs-server#readme",
"devDependencies": {
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"nodemon": "^1.14.12"
}
}