-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
70 lines (70 loc) · 1.96 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "react-csv-downloader",
"version": "3.3.0",
"description": "React csv downloader",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"test": "mocha --require ./mocha.bootstrap.js --require chai/register-expect.js \"src/**/*.spec.ts\"",
"lint": "eslint",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|jsx|ts|tsx|json)\"",
"start": "npm start --prefix example",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/dolezel/react-csv-downloader.git"
},
"keywords": [
"React",
"CSV",
"Export",
"Download"
],
"author": "Castellant Guillaume <[email protected]>",
"contributors": [
"Jan Dolezel <[email protected]>",
"Herbert Pimentel <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/dolezel/react-csv-downloader/issues"
},
"homepage": "https://github.com/dolezel/react-csv-downloader",
"engines": {
"npm": ">=7.0.0"
},
"dependencies": {
"file-saver": "^2.0.2"
},
"devDependencies": {
"@eslint/js": "9.19.0",
"@types/chai": "5.0.1",
"@types/file-saver": "2.0.7",
"@types/mocha": "10.0.10",
"@types/node": "22.10.10",
"@types/react": "19.0.8",
"chai": "5.1.2",
"eslint": "9.19.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-sonarjs": "3.0.1",
"globals": "15.14.0",
"mocha": "11.1.0",
"prettier": "3.4.2",
"react": "19.0.0",
"rimraf": "6.0.1",
"ts-node": "10.9.2",
"typescript": "5.7.3",
"typescript-eslint": "8.21.0"
},
"peerDependencies": {
"react": "^16.6.3 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
}