-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.04 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": "csv2jsonfile",
"version": "1.2.3",
"description": "A Tool convert CSV to JSON or JS Object with no dependencies.",
"main": "dist/index.js",
"scripts": {
"build": "rollup -c",
"test": "jest --coverage"
},
"keywords": [
"csv",
"json",
"csvtojson",
"readline",
"no dependencies"
],
"files": [
"dist"
],
"homepage": "https://github.com/xiaomoer/csv2json",
"bugs": "https://github.com/xiaomoer/csv2json/issues",
"repository": {
"type": "git",
"url": "https://github.com/xiaomoer/csv2json.git"
},
"author": {
"name": "limoer",
"email": "[email protected]"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.7.7",
"@types/jest": "^24.0.24",
"babel-jest": "^24.9.0",
"jest": "^24.9.0",
"rollup": "^1.27.14",
"rollup-plugin-typescript2": "^0.27.1",
"rollup-plugin-uglify": "^6.0.4",
"tslib": "^1.10.0",
"typescript": "^3.7.4"
},
"dependencies": {}
}