-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.23 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.23 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
45
46
47
48
49
{
"name": "project",
"version": "0.0.0",
"author": {
"name": "iDevelopThings",
"email": "sam@idevelopthings.com",
"url": "https://github.com/idevelopthings"
},
"repository": {
"url": "https://github.com/idevelopthings/api-utilities",
"type": "git"
},
"license": "MIT",
"description": "Make api requests and convert them to Data Transfer Objects(classes) on the fly. Along with helpers to help with handling errors.",
"typings": "./dist/types/index.d.ts",
"main": "./dist/node/index.js",
"module": "./dist/web/index.js",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"serve-dev": "ts-node-dev test-build/index.ts",
"build": "./build.sh",
"dist": "./dist.sh"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"ts-node-dev": "^1.1.8",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.5.2"
},
"dependencies": {
"@types/glob": "^7.2.0",
"@types/node": "^16.11.7",
"@types/pluralize": "^0.0.29",
"glob": "^7.2.0",
"locutus": "^2.0.15",
"pluralize": "^8.0.0",
"promise-mysql": "^5.0.4",
"reflect-metadata": "^0.1.13",
"ts-case-convert": "^1.3.1"
}
}