-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.24 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
{
"name": "@singularit/drf-axios-middleware",
"version": "0.0.1",
"type": "module",
"files": [
"dist",
"!dist/**/test",
"*.md"
],
"types": "./dist/types/index.d.ts",
"scripts": {
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "tsc --build ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json",
"clean": "tsc --build --clean",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@singularit/eslint-config-typescript": "^1.2.0",
"@types/axios-mock-adapter": "^1.10.0",
"@types/jest": "^29.4.0",
"axios-mock-adapter": "^1.21.2",
"eslint": "^8.31.0",
"jest": "^29.4.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"vitepress": "^1.0.0-rc.4"
},
"peerDependencies": {
"axios": "^1.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/singularit-de/drf-axios-middleware.git"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"default": "./dist/esm/index.js",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
}
}