-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.79 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
{
"name": "@legantech/firebase-odm",
"version": "0.0.0-development",
"description": "",
"keywords": [],
"bugs": {
"url": "https://github.com/elegantech/firebase-odm/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/elegantech/firebase-odm.git"
},
"license": "MIT",
"author": "Nelson Martell <[email protected]>",
"main": "lib/index.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"commit": "git-cz",
"preinstall": "npx -y only-allow pnpm",
"lint": "tsc --noEmit -p . && tsc --noEmit -p tsconfig.spec.json && eslint . && prettier --check .",
"prepare": "husky install",
"semantic-release": "semantic-release",
"test": "jest"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@commitlint/cz-commitlint": "^16.2.4",
"@prettier/plugin-xml": "^2.1.0",
"@types/jest": "^27.5.0",
"@types/node": "16",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"commitizen": "^4.2.4",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"husky": "^7.0.0",
"inquirer": "^8.2.4",
"jest": "^28.1.0",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"prettier-plugin-packagejson": "^2.2.17",
"pretty-quick": "^3.1.3",
"semantic-release": "^19.0.2",
"ts-jest": "^28.0.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"engines": {
"node": ">=14",
"pnpm": ">=7"
},
"publishConfig": {
"access": "public",
"main": "lib/index.js",
"typings": "lib/index.d.ts"
}
}