-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
89 lines (89 loc) · 2.2 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
{
"name": "integrify",
"version": "4.1.2",
"description": "Enforce referential integrity in Firestore using Cloud Functions",
"keywords": [
"firebase",
"firestore",
"referential",
"integrity",
"functions"
],
"homepage": "https://github.com/anishkny/integrify",
"repository": {
"type": "git",
"url": "https://github.com/anishkny/integrify.git"
},
"license": "MIT",
"author": {
"name": "Anish Karandikar",
"url": "https://github.com/anishkny"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"clean": "rm -rf lib/",
"format": "prettier --check src/ test/",
"lint": "npm run format && eslint src/ --max-warnings 0",
"check": "tsc -p ./test/functions-typescript/tsconfig.json",
"build": "npm run clean && npm run lint && npm run check && tsc",
"test": "npm run build && ./test/run-tests.sh",
"prepublishOnly": "npm run build",
"release": "./release.sh"
},
"devDependencies": {
"@commitlint/cli": "^18.4.2",
"@commitlint/config-conventional": "^18.4.2",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"chai": "^4.3.10",
"commit-and-tag-version": "^12.0.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"firebase-admin": "^11.11.0",
"firebase-functions": "^4.5.0",
"firebase-tools": "^12.9.1",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.1.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"firebase-admin": "^9.11.1 || ^10",
"firebase-functions": "^3.15.6 || ^4"
},
"optionalDependencies": {
"coveralls": "^3.1.1"
},
"dependencies": {
"caller-path": "3.0.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run build",
"commit-msg": "commitlint --verbose --env HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"scope-case": [
1,
"always",
"lower-case"
],
"subject-case": [
2,
"always",
"sentence-case"
]
}
}
}