forked from alhazmy13/angular-csv-ext
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.26 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
{
"name": "angular-csv",
"version": "1.0.5",
"description": "Helper library for creating CSV files in Angular",
"repository": {
"type": "git",
"url": "https://github.com/ehsanshrz/angular-csv.git"
},
"scripts": {
"dev": "tsc --watch",
"test": "jest",
"prepublishOnly": "tsc -p ./ --outDir dist/"
},
"keywords": [
"angular",
"angular-csv",
"export-to-csv",
"export-to-excel",
"csv",
"excel",
"libreoffice",
"openoffice"
],
"author": "Abdullah Alhazmy",
"email": "me@alhazmy13.net",
"contributors": [
{
"name": "Davor Peic - Krushka Design",
"email": "info@krushka.mx"
},
{
"name": "rob-moore",
"account": "https://github.com/rob-moore"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ehsanshrz/angular-csv/issues"
},
"main": "./dist/Angular-csv.js",
"typings": "./dist/Angular-csv.d.ts",
"homepage": "https://github.com/ehsanshrz/angular-csv#readme",
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testMatch": [
"**/*.spec.ts"
]
},
"devDependencies": {
"@types/jest": "^30.0.0",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"ts-jest": "^29.4.12",
"typescript": "^5.9.3"
}
}