forked from wovalle/fireorm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.05 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "fireorm",
"description": "ORM for Firestore",
"version": "0.0.0-development",
"author": "Willy Ovalle <[email protected]>",
"homepage": "https://fireorm.js.org",
"license": "ISC",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"bugs": {
"url": "https://github.com/wovalle/fireorm/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wovalle/fireorm.git"
},
"keywords": [
"firebase",
"firestore",
"orm"
],
"scripts": {
"build": "tsc && yarn build:strict",
"build:typedoc": "typedoc --options docgen/typedoc.json",
"build:docsify": "yarn ts-node docgen/build.ts",
"build:doc": "yarn rimraf docs && yarn build:typedoc && yarn build:docsify && cp CNAME docs/CNAME",
"build:strict": "tsc -p src",
"serve:doc": "yarn docsify serve docgen",
"deploy:doc": "gh-pages-deploy",
"build:watch": "tsc -w --incremental",
"build:strict:watch": "yarn run build:strict -- -w",
"lint": "eslint '*/**/*.{js,ts}'",
"lint:md": "remark README.md -o README.md",
"release": "semantic-release",
"test": "jest src",
"test:integration": "jest -c test/jest.config.js",
"test:watch": "jest --watch src --coverage=false",
"t": "yarn test",
"tw": "yarn test:watch"
},
"dependencies": {
"class-transformer": "^0.2.0",
"pluralize": "^8.0.0",
"ts-object-path": "^0.1.2"
},
"devDependencies": {
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@commitlint/travis-cli": "^9.0.1",
"@google-cloud/firestore": "^4.0.0",
"@types/jest": "^26.0.4",
"@types/pluralize": "^0.0.29",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"class-validator": "^0.12.2",
"docsify-cli": "^4.4.1",
"dotenv": "^8.1.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"firebase-admin": "^9.0.0",
"gh-pages-deploy": "^0.5.1",
"husky": "^4.2.3",
"jest": "^26.1.0",
"mock-cloud-firestore": "^0.12.0",
"prettier": "^2.0.5",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.0",
"semantic-release": "^17.0.3",
"ts-jest": "^26.1.1",
"ts-node": "^8.3.0",
"typedoc": "^0.17.8",
"typedoc-plugin-markdown": "^2.2.7",
"typescript": "^3.7.5"
},
"peerDependencies": {
"reflect-metadata": "^0.1.13"
},
"files": [
"/lib",
"!**/*.map",
"!**/*.spec.*",
"!**/examples/**",
"!**/test/**"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {
"branch": "master",
"plugins": [
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator"
]
},
"gh-pages-deploy": {
"staticpath": "docs",
"prep": [
"build:doc"
],
"commit": "chore(docs): updating documentation",
"noprompt": true
}
}