-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
83 lines (83 loc) · 2.24 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
78
79
80
81
82
83
{
"name": "ngx-papaparse",
"version": "8.0.0",
"description": "Papa Parse wrapper for Angular. Fast parser-library for CSV to JSON and vice versa, with built in support for background-workers.",
"author": "Albert Haff <[email protected]>",
"license": "MIT",
"repository": {
"url": "https://github.com/alberthaff/ngx-papaparse"
},
"homepage": "https://alberthaff.dk/projects/ngx-papaparse/docs/v8",
"keywords": [
"csv",
"reader",
"parser",
"parse",
"parsing",
"delimited",
"text",
"data",
"auto-detect",
"comma",
"tab",
"pipe",
"file",
"filereader",
"stream",
"worker",
"workers",
"thread",
"threading",
"multi-threaded",
"angular",
"papa",
"papaparse"
],
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build ngx-papaparse --configuration production",
"test": "ng test ngx-papaparse --browsers PhantomJS --watch=false",
"test:coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "ng lint",
"e2e": "ng e2e"
},
"dependencies": {
"tslib": "^2.6.1",
"papaparse": "^5.4.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.0",
"@angular/cli": "^16.2.0",
"@angular/common": "^16.2.0",
"@angular/compiler": "^16.2.0",
"@angular/compiler-cli": "^16.2.0",
"@angular/core": "^16.2.0",
"@angular/platform-browser": "^16.2.0",
"@angular/platform-browser-dynamic": "^16.2.0",
"@angular/router": "^16.2.0",
"@types/jasmine": "~4.3.5",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^20.5.0",
"codelyzer": "^6.0.2",
"core-js": "^3.32.0",
"coveralls": "^3.1.1",
"grunt-karma-coveralls": "^2.5.4",
"jasmine-core": "~5.1.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"ng-packagr": "^16.2.0",
"phantomjs-prebuilt": "^2.1.16",
"protractor": "~7.0.0",
"rxjs": "^7.8.1",
"ts-node": "~10.9.1",
"tslint": "~6.1.0",
"typescript": "5.1.6",
"zone.js": "~0.13.1"
}
}