-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.37 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.37 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
{
"name": "export-data",
"version": "0.2.0",
"description": "Export data in React to CSV and other file formats",
"types": "./lib/cjs/types/index.d.ts",
"main": "./lib/cjs/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest --config ./configs/jest.config.js",
"clean": "rm -rf ./lib",
"build": "npm run clean && npm run build:cjs",
"build:cjs": "tsc -p ./configs/tsconfig.cjs.json",
"prepack": "npm run build",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/etr2460/export-data.git"
},
"keywords": [
"react",
"csv",
"typescript"
],
"author": "Erik Ritter",
"license": "MIT",
"bugs": {
"url": "https://github.com/etr2460/export-data/issues"
},
"homepage": "https://github.com/etr2460/export-data#readme",
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.4",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "2.8.1",
"react-test-renderer": "^18.2.0",
"typescript": "^4.9.4"
},
"peerDependencies": {
"react": "^16.0.0-0 || ^17.0.0-0 || ^18.0.0-0",
"react-dom": "^16.0.0-0 || ^17.0.0-0 || ^18.0.0-0"
}
}