-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.14 KB
/
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
34
35
36
37
38
39
40
41
42
43
{
"name": "wajez-api",
"version": "1.6.1",
"description": "REST API Development made easy.",
"main": "src/index.js",
"scripts": {
"test": "mocha --recursive --exit --timeout 30000",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --recursive --exit --timeout 30000 -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wajez/api.git"
},
"keywords": [
"api",
"rest",
"express",
"mongodb",
"mongoose"
],
"author": "Amine Ben hammou",
"license": "MIT",
"bugs": {
"url": "https://github.com/wajez/api/issues"
},
"homepage": "https://github.com/wajez/api#readme",
"devDependencies": {
"body-parser": "^1.18.3",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"wajez-api-test": "^1.0.10"
},
"dependencies": {
"express": "^4.16.3",
"express-jwt": "^5.3.1",
"jsonwebtoken": "^8.3.0",
"pluralize": "^7.0.0",
"wajez-utils": "0.0.7"
}
}