-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.59 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
{
"name": "firestore-eloquent",
"version": "1.6.6",
"description": "A library for creating eloquent models in firestore.",
"main": "lib/firestore-eloquent.js",
"repository": {
"type": "git",
"url": "git+https://github.com/avidianity/firestore-eloquent.git"
},
"bugs": {
"url": "https://github.com/avidianity/firestore-eloquent/issues"
},
"files": [
"lib",
"types"
],
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"clean": "rm -rf lib && rm -rf types",
"build": "npm run clean && npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"test": "jest \"tests/.*\\.test\\.ts\" --detectOpenHandles"
},
"types": "types/firestore-eloquent.d.ts",
"prepublish": "tsc",
"homepage": "https://github.com/avidianity/firestore-eloquent#readme",
"keywords": [
"Firestore",
"Eloquent",
"Model",
"Data"
],
"author": "John Michael Manlupig <[email protected]>",
"license": "MIT",
"private": false,
"dependencies": {
"firebase": "^8.10.0"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-decorators": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/faker": "^5.5.9",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.8",
"babel-jest": "^27.3.1",
"faker": "^5.5.3",
"jest": "^27.3.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
}
}