-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 912 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 912 Bytes
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
{
"name": "simple-node-api",
"version": "1.0.0",
"description": "Simple node API that prints the numbers from 1 to 100 by default upon receiving a single request with no parameters. For multiples of 3, print the word 'Pé', for multiples of 5 print the word 'Do'. For multiples of both 3 and 5, print 'Pédo'",
"main": "index.js",
"scripts": {
"test": "mocha",
"start": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AnkhLoft/simple-node-api.git"
},
"author": "Helder Ferreira",
"license": "ISC",
"bugs": {
"url": "https://github.com/AnkhLoft/simple-node-api/issues"
},
"homepage": "https://github.com/AnkhLoft/simple-node-api#readme",
"dependencies": {
"express": "^4.16.3",
"joi": "^13.5.2"
},
"devDependencies": {
"express-swagger-generator": "^1.1.7",
"mocha": "^5.2.0",
"nodemon": "^1.18.3"
}
}