-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage-example.json
More file actions
47 lines (47 loc) · 1.31 KB
/
package-example.json
File metadata and controls
47 lines (47 loc) · 1.31 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
40
41
42
43
44
45
46
47
{
"name": "api-rest-for-an-android-app",
"description": "README.md",
"version": "1.0.0",
"author": "",
"engines": {
"node": "6.10.3",
"npm": "3.10.10"
},
"scripts": {
"lint": "eslint ./Sources/**/*.js",
"lint:watch": "watch \"npm run lint\" ./Sources",
"test": "mocha --require ./configureMocha.js ./Sources/**/*.spec.js",
"test:watch": "mocha --watch --require ./configureMocha.js ./Sources/**/*.spec.js",
"server": "node ./Sources/server.js",
"server:watch": "nodemon ./Sources/server.js",
"build": "npm run lint && npm run server",
"build:watch": "parallelshell \"npm run server:watch\" \"npm run lint:watch\""
},
"dependencies": {
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"event-stream": "^4.0.1",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.11",
"mysql": "^2.17.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"cross-env": "^5.2.0",
"eslint": "^5.8.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mockery": "^2.1.0",
"mw.validation": "^1.0.9",
"nodemon": "^1.18.6",
"parallelshell": "^3.0.2",
"sinon": "^4.5.0",
"sinon-bluebird": "^3.1.0",
"sinon-chai": "^2.14.0",
"supertest": "^3.3.0",
"watch": "latest"
},
"main": "Sources/server.js",
"license": "ISC"
}