forked from plexinc/papr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 3.09 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "papr",
"description": "MongoDB TypeScript-aware Models",
"author": "Plex Inc.",
"version": "14.0.0",
"keywords": [
"mongodb",
"database",
"model",
"schema",
"json",
"json-schema",
"validation",
"typescript",
"types"
],
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"type": "module",
"types": "./esm/index.d.ts",
"main": "./cjs/index.js",
"exports": {
"import": "./esm/index.js",
"require": "./cjs/index.js"
},
"files": [
"cjs/*",
"esm/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/plexinc/papr.git"
},
"homepage": "https://plexinc.github.io/papr/",
"bugs": {
"url": "https://github.com/plexinc/papr/issues/new"
},
"scripts": {
"build": "./build.sh",
"docs": "node docs/build.js && docsify serve ./docs",
"benchmark": "pnpm build && node --experimental-specifier-resolution=node ./benchmark/run.js",
"lint": "eslint --ext .js,.mjs,.ts .",
"postinstall": "husky install",
"postpack": "pinst --enable",
"prepack": "pinst --disable && pnpm build",
"pretty": "prettier '**/*.{js,md,ts}' --write",
"pretty:ci": "prettier '**/*.{js,md,ts}' --check",
"release": "standard-version --infile docs/CHANGELOG.md",
"test": "jest",
"test:build": "./tests/build.sh",
"test:types": "tsc",
"watch": "jest --watchAll",
"watch:types": "tsc --watch"
},
"devDependencies": {
"@babel/core": "7.22.9",
"@babel/preset-env": "7.22.9",
"@babel/preset-typescript": "7.22.5",
"@byu-oit/bar-chart": "1.4.2",
"@commitlint/cli": "17.6.7",
"@commitlint/config-conventional": "17.6.7",
"@types/node": "16.18.39",
"@typescript-eslint/eslint-plugin": "6.1.0",
"@typescript-eslint/parser": "6.1.0",
"arg": "5.0.2",
"docsify-cli": "4.4.4",
"eslint": "8.45.0",
"eslint-config-prettier": "8.7.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-n": "16.0.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-promise": "6.1.1",
"husky": "8.0.3",
"jest": "29.6.1",
"jsdoc-api": "8.0.0",
"jsdoc-parse": "6.2.0",
"lint-staged": "13.2.3",
"mongodb": "5.7.0",
"mongodb-memory-server": "8.13.0",
"mongoose": "6.3.5",
"pinst": "3.0.0",
"prettier": "3.0.0",
"standard-version": "9.5.0",
"ts-expect": "1.3.0",
"ts-node": "10.9.1",
"typescript": "5.1.3"
},
"peerDependencies": {
"mongodb": "^5.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
2,
"always",
[
"sentence-case"
]
]
}
},
"lint-staged": {
"*.{js,mjs,ts}": [
"eslint --ext .js,.mjs,.ts --fix",
"prettier --write --list-different"
],
"src/*.ts": [
"node docs/build.js",
"git add docs/"
]
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5"
},
"volta": {
"node": "16.20.1",
"pnpm": "8.6.0"
},
"packageManager": "[email protected]"
}