This repository has been archived by the owner on Jun 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 135
/
package.json
64 lines (64 loc) · 1.9 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
{
"name": "typegoose",
"version": "5.9.1",
"description": "Define Mongoose models using TypeScript classes.",
"main": "lib/typegoose.js",
"engines": {
"node": ">=8.10.0"
},
"files": [
"lib/*.js",
"lib/*.d.ts"
],
"scripts": {
"start": "npm run build && node ./lib/typegoose.js",
"build": "tsc -p tsconfig.build.json",
"watch": "tsc -w -p tsconfig.build.json",
"lint": "tslint --project tsconfig.json",
"test": "npm run lint && nyc npm run mocha",
"mocha": "npm run build && mocha \"./test/*.ts\" --timeout 15000",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"clean": "rimraf lib && rm .tsbuildinfo && rimraf .nyc_output && rimraf coverage && rimraf doc",
"doc": "typedoc --out ./doc ./src --mode modules"
},
"repository": {
"type": "git",
"url": "https://github.com/szokodiakos/typegoose.git"
},
"types": "lib/typegoose.d.ts",
"typings": "lib/typegoose.d.ts",
"author": "Akos Szokodi <[email protected]> (http://codingsans.com)",
"license": "MIT",
"peerDependencies": {
"mongoose": "^5.6.7"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.7",
"@types/mongoose": "^5.5.11",
"@types/node": "^8.10.51",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.5",
"mocha": "^6.2.0",
"mongodb-memory-server-global": "^5.1.9",
"mongoose": "^5.6.7",
"mongoose-findorcreate": "3.0.0",
"nyc": "*14.1.1",
"prettier": "^1.18.2",
"prettier-tslint": "^0.4.2",
"rimraf": "*2.6.3",
"source-map-support": "^0.5.12",
"ts-node": "^8.3.0",
"tslint": "*5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"typedoc": "*0.15.0",
"typescript": "*3.5.3"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
}
}