-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
60 lines (60 loc) · 1.72 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
{
"name": "json-to-csv-export",
"version": "3.0.0",
"description": "Easily generate csv downloads of your json data.",
"files": [
"/lib"
],
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"author": "Coston Perkins (https://coston.io)",
"homepage": "https://github.com/coston/json-to-csv-export",
"repository": {
"type": "git",
"url": "https://github.com/coston/json-to-csv-export.git"
},
"bugs": {
"url": "https://github.com/coston/json-to-csv-export/issues"
},
"license": "MIT",
"engines": {
"node": ">=12.17.0"
},
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"build:esm": "tsc",
"clean": "rm -rf lib",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"dev": "npm run build && rapid dev & npm run watch",
"rapid": "rapid dev",
"docs": "npm run build && rapid build",
"format": "prettier --write 'src/**/*.ts'",
"postpublish": "git push && git push --tag",
"preversion": "npm run test && npm run format && npm run clean && npm run build && npm run docs",
"start": "npm run build; npm run dev",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"watch": "tsc --watch"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/jsdom": "^20.0.0",
"@types/react": "18.0.28",
"coveralls": "^3.0.2",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"prettier": "3.0.1",
"rapid-react-pkg-demo": "^0.5.1",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"keywords": [
"json",
"csv",
"download",
"web"
]
}