-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.29 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.29 KB
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
{
"name": "typescript-nedb-orm",
"version": "1.7.0",
"description": "ORM for @seald-io/nedb written in TypeScript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"prepublish": "tsc",
"test": "jest",
"format": "prettier --write .",
"prepare": "husky install",
"lint": "eslint src/ --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/levg34/typescript-nedb-orm.git"
},
"keywords": [
"nedb",
"ORM",
"typescript",
"ODM"
],
"author": "levg34",
"license": "GPLv3",
"bugs": {
"url": "https://github.com/levg34/typescript-nedb-orm/issues"
},
"homepage": "https://github.com/levg34/typescript-nedb-orm#readme",
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.0",
"jest": "^29.3.1",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"ts-jest": "^29.0.3",
"typescript": "^4.9.5"
},
"dependencies": {
"@seald-io/nedb": "^3.1.0"
},
"lint-staged": {
"*.{ts,js,css,md}": "prettier --write"
}
}