-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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
{
"name": "jsonapi-metal-client",
"version": "0.2.1",
"description": "Bare metal TypeScript and JavaScript client for web API implementing JSON:API v1.0.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/masterT/jsonapi-metal-client",
"author": "Simon Thiboutôt <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "tsc",
"build": "tsc",
"lint": "eslint .",
"type-guards": "ts-auto-guard --import-guards --guard-file-name='TypeGuards'",
"documentation": "typedoc src/index.ts",
"format": "eslint . --fix",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"axios-mock-adapter": "^1.20.0",
"cross-fetch": "^3.1.5",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"ts-auto-guard": "2.2.1",
"ts-jest": "^27.1.2",
"typedoc": "^0.22.10",
"typescript": "^4.5.4"
},
"dependencies": {
"axios": "^0.26.1"
}
}