This repository has been archived by the owner on Mar 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
49 lines (49 loc) · 1.55 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
{
"name": "root",
"private": true,
"description": "A simple wrapper for Firestore",
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna run clean",
"build": "lerna run build",
"build:clean": "npm run clean && npm run build",
"test": "lerna run test",
"example:ci": "lerna run example:ci",
"audit": "lerna exec -- npm audit",
"audit:fix": "lerna exec -- npm audit fix",
"lint": "eslint --cache \"packages/**/{src,__tests__}/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"coverage": "codecov",
"release:prepublish": "npm run build:clean && lerna publish prerelease --dist-tag=beta -c",
"release:prepare": "shipjs prepare --dry-run && shipjs prepare",
"release:trigger": "npm run clean && shipjs trigger"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"codecov": "3.8.3",
"eslint": "7.25.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-standard": "4.1.0",
"lerna": "^4.0.0",
"shipjs": "0.24.0",
"typescript": "4.4.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kesin11/Firestore-simple.git"
},
"keywords": [
"Firestore"
],
"author": "Kesin11",
"email": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kesin11/Firestore-simple/issues"
},
"homepage": "https://github.com/Kesin11/Firestore-simple#readme"
}