-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.16 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.16 KB
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
{
"name": "dynasystem-exercises",
"version": "1.0.0",
"description": "Dynasystem is a sportive and rehabilitational device for the athletes. This microservice allows the user to create an exercise and save it for the record.",
"main": "app.js",
"scripts": {
"test": "./node_modules/istanbul/lib/cli.js cover ./node_modules/.bin/_mocha",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adrianmorente/PracticasIV.git"
},
"author": "adrianmorente",
"license": "MIT",
"bugs": {
"url": "https://github.com/adrianmorente/PracticasIV/issues"
},
"homepage": "https://github.com/adrianmorente/PracticasIV#readme",
"devDependencies": {
"coveralls": "^3.0.0",
"docco": "^0.8.0",
"grunt": "^1.0.1",
"grunt-docco": "^0.5.0",
"istanbul": "^0.4.5",
"jshint": "^2.9.5",
"mocha": "^5.0.0"
},
"dependencies": {
"assert": "^1.4.1",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"flightplan": "^0.6.17",
"grunt-cli": "^1.2.0",
"mongodb": "^3.0.1",
"supertest": "^3.0.0"
}
}