-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.42 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
78
79
{
"name": "deco-mongo",
"version": "0.3.1",
"description": "A modern and lightweight Mongo ODM library written in Typescript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run build:clean && npm run build:tsc",
"build:clean": "rimraf lib",
"build:tsc": "tsc",
"build:watch": "tsc --watch",
"coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls",
"format:check": "prettier --check \"src/**/*.ts\"",
"format:write": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json -c tslint.json",
"lint:check-config": "tslint-config-prettier-check ./tslint.json",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "jest",
"test:unit-debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"test:e2e-debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --config ./test/jest-e2e.json"
},
"keywords": [
"mongo",
"mongodb",
"odm",
"database",
"db"
],
"author": "Erik Christensen",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/erikc5000/deco-mongo.git"
},
"engines": {
"node": ">= 12"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^12.20.7",
"@types/rimraf": "^3.0.0",
"@types/uuid": "^8.3.0",
"coveralls": "^3.1.0",
"jest": "^27.0.6",
"mongodb": "^4.0.0",
"mongodb-memory-server": "^8.1.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.2.4"
},
"dependencies": {
"uuid": "^8.3.2"
},
"peerDependencies": {
"mongodb": "^4.0.0",
"reflect-metadata": "^0.1.12"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverage": true,
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}