-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.76 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
{
"name": "@mia-platform/js-crud-service-client",
"version": "0.2.2",
"description": "The official crud-service JavaScript client",
"license": "Apache-2.0",
"author": "Mia Platform Core Team <[email protected]>",
"homepage": "https://github.com/mia-platform/js-crud-service-client#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mia-platform/js-crud-service-client.git"
},
"bugs": {
"url": "https://github.com/mia-platform/js-crud-service-client/issues"
},
"files": [
"dist"
],
"packageManager": "[email protected]",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build:lib": "tsc --project scripts/tsconfig.build.json",
"build:types": "tsc --project scripts/tsconfig.types.json",
"build": "rimraf dist && yarn build:lib && yarn build:types",
"check-types": "tsc --skipLibCheck",
"lint": "eslint .",
"test": "node --import=tsx --test tests/**/*.test.*",
"coverage": "./scripts/coverage.sh"
},
"dependencies": {
"got": "^11.8.6",
"http-errors": "^2.0.0",
"lodash.isempty": "^4.4.0",
"qs": "^6.13.1"
},
"devDependencies": {
"@mia-platform/eslint-config-mia": "^3.0.0",
"@types/http-errors": "^2.0.4",
"@types/lodash.isempty": "^4.4.9",
"@types/qs": "^6.9.17",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.14.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-unused-imports": "^4.1.4",
"nock": "^13.5.6",
"pino": "^9.5.0",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=v22"
}
}