-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.34 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
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
{
"name": "@xureilab/restgoose",
"version": "1.1.8",
"description": "Model-driven REST API framework",
"homepage": "https://xurei.github.io/restgoose",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "node_modules/.bin/rimraf lib && npm run tslint && npm run build-ts",
"build-ts": "node_modules/.bin/tsc -p .",
"build-examples": "node_modules/.bin/tsc -p examples",
"serve-doc": "sh scripts/serve-doc.sh",
"prepublishOnly": "npm run build",
"tslint": "node_modules/.bin/tslint -p .",
"tslint:fix": "tslint -p tsconfig.json --fix",
"mongoserver": "docker run --name mongo -p 27017:27017 mongo:3.7.2",
"test": "node_modules/.bin/nyc mocha --opts ./mocha.opts test/*.ts",
"coverage": "node_modules/.bin/nyc report --reporter=json --reporter=lcov",
"coverage:codecov": "node_modules/.bin/codecov -f coverage/*.json",
"coverage:codacy": "echo \"Sending coverage to Codacy...\" && cat coverage/lcov.info | node_modules/.bin/codacy-coverage -v | grep \\\\[debug\\\\]"
},
"keywords": [
"REST",
"restful",
"mongodb",
"decorators",
"framework",
"backend"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/xurei/restgoose.git"
},
"author": "Olivier Bourdoux",
"license": "MIT",
"dependencies": {
"debug": "^4.1.1",
"@types/mongoose": "~5.2.15"
},
"peerDependencies": {
"express": ">=4.0.0",
"typescript": ">=3.3.4000"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-http": "^3.0.5",
"@types/es6-promise": "^3.3.0",
"@types/express": "^4.16.1",
"@types/mocha": "^5.2.6",
"@types/node": "^8.10.44",
"@types/sinon": "^7.0.10",
"@types/sinon-chai": "^3.2.2",
"chai": "^4.1.2",
"chai-http": "^4.2.1",
"chai-match-pattern": "^1.1.0",
"codacy-coverage": "^3.4.0",
"codecov": "^3.8.0",
"cors": "^2.8.4",
"dirty-chai": "^2.0.1",
"express": "^4.16.3",
"jsonwebtoken": "^8.5.1",
"mocha": "^6.1.4",
"mock-req": "^0.2.0",
"moment": "^2.24.0",
"mongoose": "^5.10.9",
"nyc": "^13.3.0",
"promise": "^8.0.3",
"reflect-metadata": "^0.1.13",
"rimraf": "^2.6.3",
"run-middleware": "^0.9.10",
"sinon": "^7.3.0",
"sinon-chai": "^3.3.0",
"ts-node": "^8.0.3",
"tslint": "^5.18.0",
"typescript": "^3.3.4000"
}
}