-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
187 lines (187 loc) · 5.21 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
{
"name": "@upfrontjs/framework",
"version": "0.18.1",
"description": "Data handling framework complementary to backend model systems.",
"main": "index.min.js",
"module": "index.es.min.js",
"exports": {
".": {
"default": "./index.min.js",
"import": "./index.es.min.js",
"require": "./index.min.js",
"node": "./index.min.js"
}
},
"types": "types/index.d.ts",
"files": [
"string*.js",
"array*.js",
"index*.js",
"*.js.map",
"src",
"types"
],
"author": "Nandor Kraszlan",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/upfrontjs/framework.git"
},
"bugs": {
"url": "https://github.com/upfrontjs/framework/issues"
},
"homepage": "https://upfrontjs.com/",
"directories": {
"lib": "./src",
"doc": "./docs",
"test": "./tests"
},
"keywords": [
"model",
"data handling",
"object oriented",
"active record",
"orm",
"front end",
"browser",
"api",
"rest",
"json",
"framework",
"factory",
"collection",
"ancestry tree",
"helpers",
"string",
"array",
"typescript",
"tested",
"relations",
"attributes",
"query",
"casting",
"guarding",
"timestamps",
"soft deletes",
"esm",
"pagination",
"config",
"in memory store",
"events",
"event bus",
"event emitter",
"eloquent",
"upfront"
],
"scripts": {
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"lint": "eslint . --cache --fix --ext .ts",
"emit-declarations": "tsc --declaration --declarationMap --declarationDir ./types --emitDeclarationOnly",
"build": "rollup -c && npm run emit-declarations",
"docs:api": "[ ! -d './types' ] && npm run emit-declarations || echo './types folder exists' && npx typedoc",
"prepare": "husky install",
"commit": "commit"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"lodash.merge": "^4.6.2",
"lodash.orderby": "^4.6.0",
"lodash.snakecase": "^4.1.1",
"lodash.uniq": "^4.5.0",
"pluralize": "^8.0.0",
"qs": "^6.9.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.0.0",
"@commitlint/prompt-cli": "^17.0.0",
"@commitlint/types": "^17.0.0",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@semantic-release/git": "^10.0.0",
"@types/jest": "^29.0.1",
"@types/lodash.clonedeep": "^4.5.7",
"@types/lodash.isequal": "^4.5.6",
"@types/lodash.merge": "^4.6.7",
"@types/lodash.orderby": "^4.6.7",
"@types/lodash.snakecase": "^4.1.7",
"@types/lodash.uniq": "^4.5.7",
"@types/pluralize": "^0.0.29",
"@types/qs": "^6.9.5",
"@types/semantic-release": "^20.0.1",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"commitlint": "^17.0.2",
"conventional-changelog-conventionalcommits": "5.0.0",
"cross-fetch": "^3.1.5",
"eslint": "^8.23.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^27.0.4",
"husky": "^8.0.1",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"lint-staged": "^13.0.1",
"rollup": "^3.13.0",
"rollup-plugin-bundle-size": "^1.0.3",
"semantic-release": "^21.0.0",
"ts-jest": "^29.0.0",
"tslib": "^2.2.0",
"typedoc": "^0.24.1",
"typescript": "^5.0.2"
},
"peerDependencies": {
"@types/lodash.clonedeep": "^4.5.7",
"@types/lodash.isequal": "^4.5.6",
"@types/lodash.merge": "^4.6.7",
"@types/lodash.orderby": "^4.6.7",
"@types/lodash.snakecase": "^4.1.7",
"@types/lodash.uniq": "^4.5.7",
"@types/pluralize": "^0.0.29",
"@types/qs": "^6.9.5",
"@types/uuid": "^9.0.0"
},
"peerDependenciesMeta": {
"@types/qs": {
"optional": true
},
"@types/uuid": {
"optional": true
},
"@types/lodash.clonedeep": {
"optional": true
},
"@types/lodash.isequal": {
"optional": true
},
"@types/lodash.merge": {
"optional": true
},
"@types/lodash.orderby": {
"optional": true
},
"@types/lodash.snakecase": {
"optional": true
},
"@types/lodash.uniq": {
"optional": true
},
"@types/pluralize": {
"optional": true
}
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/nandi95"
}
],
"engines": {
"node": ">=18.0.0"
}
}