-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.54 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
{
"name": "mongoose-delete-ts",
"version": "2.1.0",
"description": "Mongoose soft delete plugin",
"author": "Emil Janitzek <[email protected]>",
"main": "dist/source/index.js",
"types": "dist/source/index.d.ts",
"scripts": {
"test": "npx ts-mocha --project test/tsconfig.json --transpile-only --recursive --reporter spec --require test/utils/hooks.ts --require chai/register-expect.js ./test/*.ts",
"test:dist": "npx mocha --recursive --reporter spec --require dist/test/utils/hooks.js ./dist/test/*",
"clean": "rm -r dist",
"build": "npx tsc -b source",
"build:test": "npx tsc -b test",
"prepare": "npm run build",
"eslint": "npx eslint source/** test/** --ext .ts"
},
"repository": {
"type": "git",
"url": "[email protected]:emiljanitzek/mongoose-delete-ts.git"
},
"keywords": [
"mongoose",
"soft",
"delete",
"remove",
"plugin",
"typescript"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/emiljanitzek/mongoose-delete-ts/issues"
},
"homepage": "https://github.com/emiljanitzek/mongoose-delete-ts",
"peerDependencies": {
"mongoose": "8.x"
},
"devDependencies": {
"@tsconfig/node20": "~20.1.2",
"@types/chai": "~4.3.12",
"@types/mocha": "~10.0.6",
"@types/node": "~20.11.24",
"@typescript-eslint/eslint-plugin": "~7.1.0",
"@typescript-eslint/parser": "~7.1.0",
"chai": "~4.3.10",
"eslint": "~8.57.0",
"mocha": "~10.3.0",
"mongodb": "~6.5.0",
"mongoose": "~8.3.1",
"ts-mocha": "~10.0.0",
"typescript": "~5.3.3"
}
}