-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.3 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
{
"name": "@fireflyjs/core",
"version": "0.0.5",
"description": "ODM for FireStore",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"prepare": "husky install",
"compile": "tsc",
"format": "npx prettier --write .",
"lint": "npx eslint --fix .",
"test": "jest",
"test:watch": "jest --watch",
"test:verbose": "jest --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FireflyJS/fireflyjs-core.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/FireflyJS/fireflyjs-core/issues"
},
"homepage": "https://github.com/FireflyJS/fireflyjs-core#readme",
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^16.3.1",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.30.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"dependencies": {
"firebase-admin": "^9.11.0"
},
"directories": {
"lib": "lib"
}
}