-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.1 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "express-rest-api",
"version": "1.0.0",
"description": "Express REST API sample",
"main": "index.js",
"scripts": {
"test": "npm run test:integration && npm run test:unit",
"start": "nodemon index.js",
"dev": "NODE_ENV=development nodemon index.js",
"prod": "NODE_ENV=production nodemon index.js",
"test:integration": "mocha tests/integration/**/*.spec.js",
"test:unit": "mocha tests/unit/**/*.spec.js",
"test-server:unit": "mocha tests/unit/**/*.spec.js --watch",
"test:report": "nyc --reporter=html --reporter=text mocha tests/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gfviegas/express-rest-api.git"
},
"keywords": [
"express",
"es6",
"tdd",
"api",
"restful",
"mongoose"
],
"author": "gfviegas",
"license": "MIT",
"bugs": {
"url": "https://github.com/gfviegas/express-rest-api/issues"
},
"homepage": "https://github.com/gfviegas/express-rest-api#readme",
"dependencies": {
"bcrypt": "^1.0.2",
"body-parser": "^1.15.2",
"busboy": "^0.2.14",
"bytes": "^2.0.0",
"concat-stream": "^1.4.6",
"cors": "^2.8.1",
"debug": "^2.1.0",
"dotenv": "^2.0.0",
"emailjs": "^1.0.10",
"express": "^4.14.0",
"express-validator": "^3.0.0",
"extend": "^3.0.0",
"fb": "^1.1.1",
"jimp": "^0.2.27",
"jsonwebtoken": "^7.2.1",
"moment": "^2.18.1",
"mongoose": "^4.7.2",
"mongoose-bcrypt": "^1.4.2",
"morgan": "^1.7.0",
"multer": "^1.3.0",
"node-quill-converter": "^0.3.3",
"pug": "^2.0.0-beta11",
"request": "^2.81.0",
"request-promise": "^4.2.0",
"rfr": "^1.2.3",
"util": "^0.10.3",
"validator": "^6.2.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chalk": "^1.1.3",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"nyc": "^10.0.0",
"sinon": "^1.17.6",
"sinon-mongoose": "^1.3.0",
"standard": "^8.6.0",
"supertest": "^2.0.1"
},
"standard": {
"globals": [
"describe",
"it",
"expect",
"beforeEach",
"afterEach"
]
}
}