-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.94 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.94 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "react-axios-progressbar",
"version": "1.2.1",
"description": "Show a ProgressBar in React whenever an axios request is in progress.",
"files": [
"lib"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/42BV/react-axios-progressbar.git"
},
"keywords": [
"React",
"Axios",
"Progressbar"
],
"author": "Gido Manders",
"license": "ISC",
"bugs": {
"url": "https://github.com/42BV/react-axios-progressbar/issues"
},
"homepage": "https://github.com/42BV/react-axios-progressbar#readme",
"peerDependencies": {
"axios": "^0.27.2||^1.0.0",
"react": "^17.0.2||^18.0.0||^19.0.0"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@types/react": "19.2.13",
"@vitest/coverage-v8": "4.0.18",
"@vitest/eslint-plugin": "1.6.6",
"axios": "1.13.5",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"husky": "9.1.7",
"jsdom": "28.0.0",
"lint-staged": "16.2.7",
"np": "11.0.2",
"prettier": "3.8.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"typescript": "5.9.3",
"typescript-eslint": "8.55.0",
"vitest": "4.0.18"
},
"scripts": {
"start": "vitest --watch",
"clean": "rm -rf lib",
"test": "npm run lint && npm run test:ts && npm run test:coverage",
"test:ts": "tsc --version && tsc --noEmit",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --coverage",
"tsc": "npm run clean && tsc --version && tsc",
"lint": "eslint src tests --max-warnings=0",
"release": "npm run tsc && np",
"dev:publish": "./scripts/dev-publish.sh",
"prepare": "husky"
},
"lint-staged": {
"{src,tests}/**/*.{js,jsx,json,scss,ts,tsx}": [
"prettier --write"
]
}
}