forked from anishkny/integrify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.12 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
{
"name": "@gitliveapp/integrify",
"version": "6.0.0",
"description": "Enforce referential integrity in Firestore using Cloud Functions",
"keywords": [
"firebase",
"firestore",
"referential",
"integrity",
"functions"
],
"homepage": "https://github.com/GitLiveApp/integrify",
"repository": {
"type": "git",
"url": "https://github.com/GitLiveApp/integrify.git"
},
"license": "MIT",
"author": {
"name": "Anish Karandikar",
"url": "https://github.com/anishkny"
},
"type": "module",
"main": "./lib/index.js",
"module": "./lib/index.esm.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"clean": "rm -rf lib/",
"format": "prettier --check --write {src,test}/*.{ts,js} {src,test}/**/*.{ts,js}",
"lint": "npm run format && tslint --project ./tsconfig.json",
"build": "tsc && rollup -c",
"test": "npm run test:verbose -- --silent",
"test:verbose": "jest --runInBand --config jest.config.js --coverage",
"test:ci": "jest --runInBand --config jest.config.js --silent --coverage --reporters=\"default\" --reporters=\"jest-junit\"",
"emulator": "firebase emulators:start --only firestore"
},
"devDependencies": {
"@types/jest": "^29.2.0",
"axios": "^1.1.3",
"firebase-admin": "^11.2.0",
"firebase-functions": "^4.0.1",
"firebase-functions-test": "^3.0.0",
"jest": "^29.2.1",
"jest-junit": "^14.0.1",
"object-sizeof": "^1.6.3",
"prettier": "^2.7.1",
"rollup": "^3.2.3",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.8.4"
},
"peerDependencies": {
"firebase-admin": "^11.2.0",
"firebase-functions": "^4.0.1"
},
"optionalDependencies": {
"coveralls": "^3.1.1"
},
"dependencies": {
"caller-path": "^3.0.1"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"jest-junit": {
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
}
}