-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.11 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.11 KB
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
{
"name": "firestore-class",
"version": "1.2.4",
"description": "simple orm model for easing workflow. writed in typescript.",
"main": "lib/index",
"types": "lib/index",
"homepage": "https://github.com/aqualaguna/firestore-model",
"repository": {
"type": "git",
"url": "https://github.com/aqualaguna/firestore-model"
},
"scripts": {
"start": "npm run build:live",
"clean": "rm -rf lib",
"build:publish": "npm run build && npm publish",
"build": "npm run clean && tsc -p .",
"build:live": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"test": "jest",
"test-watch": "jest --watchAll"
},
"keywords": [
"firestore",
"orm",
"simple",
"alpha"
],
"author": "aqualaguna",
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.9",
"@types/node": "^11.10.4",
"jest": "^24.1.0",
"nodemon": "^1.18.10",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.2",
"typescript": "^3.3.3333"
},
"dependencies": {
"@types/faker": "^4.1.5",
"change-case": "^3.1.0",
"faker": "^4.1.0",
"firebase-admin": "^8.6.1"
}
}