-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 2.51 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": "@bdelab/roar-firekit",
"version": "9.2.0",
"description": "A library to facilitate Firebase authentication and Cloud Firestore interaction for ROAR apps",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"lib/**/*.js\"",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"doc": "npx typedoc",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push $(git remote -v | grep \"yeatmanlab/roar-firekit.git \\(push\\)\" | cut -f 1) && git push $(git remote -v | grep \"yeatmanlab/roar-firekit.git \\(push\\)\" | cut -f 1) --tags",
"emulate:admin": "source src/__tests__/__utils__/emulate_admin.sh",
"emulate:assessment": "source src/__tests__/__utils__/emulate_assessment.sh",
"emulate:start": "npm run emulate:admin && npm run emulate:assessment",
"emulate:stop": "ps -e | grep firebase | grep -v 'grep' | grep -v 'rg' | sed -e 's/^[ \t]*//' | tr -s ' ' | cut -d ' ' -f 1 | xargs kill"
},
"repository": {
"type": "git",
"url": "git+https://github.com/richford/roar-firekit.git"
},
"keywords": [
"firebase",
"roar",
"authentication",
"cloud",
"firestore",
"reading",
"literacy",
"dyslexia"
],
"author": "Adam Richie-Halford <[email protected]> (https://richiehalford.org/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/richford/roar-firekit/issues"
},
"homepage": "https://github.com/richford/roar-firekit#readme",
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@firebase/rules-unit-testing": "^2.0.2",
"@types/dot-object": "^2.1.2",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.192",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.5.1",
"process": "^0.11.10",
"typedoc": "^0.22.13",
"typescript": "^4.6.2",
"vitest": "^2.1.8"
},
"files": [
"lib/**/*"
],
"dependencies": {
"@bdelab/roar-firekit": "^4.1.1",
"ajv": "^8.17.1",
"ajv-errors": "^3.0.0",
"crc-32": "^1.2.2",
"dot-object": "^2.1.4",
"firebase": "^9.23.0",
"link": "^2.1.0",
"lodash": "^4.17.21",
"vue": "^3.3.4",
"web-vitals": "^3.4.0"
}
}