forked from alhazmy13/angular-csv-ext
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
77 lines (77 loc) · 1.93 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
71
72
73
74
75
76
77
{
"name": "ngx-csv",
"version": "0.3.2",
"description": "Helper library for create CSV file in Angular 2+",
"repository": {
"type": "git",
"url": "https://github.com/lhanscom/ngx-csv.git"
},
"scripts": {
"dev": "tsc --watch",
"test-watch": "karma start",
"test": "karma start --single-run",
"run": "ts-node ./ngxCsv.ts",
"prepublishOnly": "tsc -p ./ --outDir dist/"
},
"keywords": [
"ngx",
"angular7",
"angular-7",
"export-to-csv",
"export-to-excel",
"csv",
"excel",
"libreoffice",
"openoffice"
],
"author": "Luke Hanscom",
"email": "[email protected]",
"contributors": [
{
"name": "Davor Peic - Krushka Design",
"email": "[email protected]"
},
{
"name": "Abdullah Alhazmy",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/lhanscom/ngx-csv/issues"
},
"main": "./dist/ngx-csv.js",
"typings": "/dist/ngx-csv.d.ts",
"homepage": "https://github.com/lhanscom/ngx-csv/#readme",
"devDependencies": {
"@angular/common": "^7.1.0",
"@angular/core": "^7.1.0",
"@angular/http": "^7.1.0",
"@angular/platform-browser": "^7.1.0",
"@types/jasmine": "^2.8.6",
"@types/js-base64": "^2.1.3",
"awesome-typescript-loader": "^3.1.2",
"core-js": "^2.3.0",
"es6-shim": "^0.35.3",
"jasmine-core": "^2.99.1",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-typescript": "^3.0.12",
"karma-webpack": "^2.0.3",
"phantomjs-prebuilt": "^2.1.7",
"reflect-metadata": "^0.1.10",
"rxjs": "^6.3.3",
"typescript": "^2.4.2",
"webpack": "^3.4.1",
"zone.js": "^0.8.26"
},
"peerDependencies": {
"@angular/core": "^7.0.0",
"@angular/http": "^7.0.0",
"rxjs": "^6.3.3"
}
}