-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
39 lines (39 loc) · 872 Bytes
/
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
{
"name": "udsv",
"version": "0.6.0",
"description": "A small, fast CSV parser",
"main": "./dist/uDSV.cjs.js",
"module": "./dist/uDSV.mjs",
"types": "./dist/uDSV.d.ts",
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"test": "node ./test/parse.spec.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leeoniya/uDSV.git"
},
"files": [
"package.json",
"README.md",
"LICENSE",
"dist"
],
"keywords": [
"csv",
"parse",
"parser"
],
"author": "Leon Sorokin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/leeoniya/uDSV/issues"
},
"homepage": "https://github.com/leeoniya/uDSV#readme",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"papaparse": "^5.4.1",
"rollup": "^4.24.3",
"rollup-plugin-re": "^1.0.7"
}
}