-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.08 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
{
"name": "csv-differ",
"version": "1.0.2",
"description": "Parses a CSV and outputs an item-by-item diff against a collection of objects.",
"main": "./dist",
"scripts": {
"build": "babel --out-dir dist src",
"test": "jest --verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/natemortensen/csv-differ"
},
"keywords": [
"csv",
"diff",
"parse"
],
"author": "Nate Mortensen",
"license": "ISC",
"bugs": {
"url": "https://github.com/natemortensen/csv-differ/issues"
},
"homepage": "https://github.com/natemortensen/csv-differ#readme",
"dependencies": {
"@babel/runtime": "^7.7.2",
"deep-object-diff": "^1.1.0",
"lodash.frompairs": "^4.0.1",
"lodash.isempty": "^4.4.0",
"lodash.pick": "^4.4.0",
"lodash.pickby": "^4.6.0",
"object-path": "^0.11.4",
"papaparse": "^5.1.0"
},
"files": [
"dist"
],
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"jest": "^24.9.0"
}
}