forked from rayyen/angular-csv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.32 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
{
"name": "simple-csv-js",
"version": "1.0.2",
"description": "Helper library for creating CSV files in JS",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"files": [
"lib",
"package.json"
],
"scripts": {
"test": "jest",
"build": "rollup -c"
},
"keywords": [
"csv",
"excel",
"angular-csv",
"react-csv",
"export-to-csv",
"export-to-excel"
],
"author": "Aron Nicholasson",
"contributors": [
{
"name": "Abdullah Alhazmy",
"email": "[email protected]"
},
{
"name": "Davor Peic - Krushka Design",
"email": "[email protected]"
},
{
"name": "rob-moore",
"account": "https://github.com/rob-moore"
}
],
"license": "MIT",
"homepage": "https://github.com/ANicholasson/simple-csv-js#readme",
"repository": {
"type": "git",
"url": "https://github.com/ANicholasson/simple-csv-js.git"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-node-resolve": "^13.2.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.45",
"babel-jest": "^28.0.0",
"jest": "^28.0.0",
"jest-environment-jsdom": "^28.0.0",
"rollup": "^2.70.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}