-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.15 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
{
"name": "lil-csv",
"version": "1.4.6",
"description": "Mini 1k module for CSV, TSV, PSV file manipulations",
"source": "src/lil-csv.js",
"main": "dist/lil-csv.umd.js",
"module": "dist/lil-csv.module.mjs",
"exports": {
".": {
"require": "./dist/lil-csv.js",
"import": "./dist/lil-csv.modern.mjs"
}
},
"unpkg": "dist/lil-csv.umd.js",
"umd:main": "dist/lil-csv.umd.js",
"sideEffects": false,
"scripts": {
"prepublishOnly": "npm run build",
"ci": "npm i && npm t",
"test": "mocha --require esm",
"build": "microbundle",
"dev": "microbundle watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flash-oss/lil-csv.git"
},
"keywords": [
"csv",
"parse",
"csv-parser",
"csv-generator",
"csv-object"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/flash-oss/lil-csv/issues"
},
"homepage": "https://github.com/flash-oss/lil-csv#readme",
"devDependencies": {
"esm": "^3.2.25",
"microbundle": "^0.15.1",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"prettier": "^2.2.1"
},
"files": [
"src",
"dist"
]
}