-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.57 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
{
"name": "mongoose-restapi-ui",
"version": "1.8.0",
"license": "MIT",
"description": "Rest api library for your mongoose apps, with react ui: mongoose-restapi-ui-component react library",
"main": "src/router.js",
"scripts": {
"start": "npm run pretest && ts-node ./demo/index.ts",
"prepublishOnly": "tsc --declaration",
"pretest": "find src -name \"*.d.ts\" -type f -delete && find src -name \"*.js\" -type f -delete && find src -name \"*.js.map\" -type f -delete && tsc",
"test": "nyc mocha",
"precoverage": "nyc report --reporter=cobertura",
"html": "nyc report --reporter=html",
"coverage": "codecov coverage/coverage.json",
"watch": "mocha-typescript-watch"
},
"author": "Hector Ribes",
"dependencies": {
"express": "^4.16.4",
"mock-require": "^3.0.2",
"mongoose": "^4.0.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/express": "^4.16.0",
"@types/mocha": "^5.2.5",
"@types/mongoose": "^5.2.19",
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"codecov": "^3.1.0",
"mocha": "^5.2.0",
"mocha-typescript": "^1.1.17",
"nyc": "^13.1.0",
"q": "^1.5.1",
"ts-node": "^7.0.1",
"typescript": "^3.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/hector7/mongoose-restapi-ui.git"
},
"keywords": [
"mongoose",
"rest",
"api",
"restapi",
"ui",
"gui",
"mongoose-ui",
"mongoose-gui"
],
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 90,
"statements": 90,
"functions": 90,
"branches": 85
}
}