-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.27 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.27 KB
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
{
"name": "@vanillaes/csv",
"version": "4.1.0",
"description": "A modern, fast, RFC 4180 compliant parser for JS",
"keywords": [
"esm",
"esmodule",
"csv",
"csv-parser",
"rfc4180"
],
"license": "MIT",
"contributors": [
{
"name": "Evan Plaice",
"email": "evan.plaice@gmail.com",
"url": "http://evanplaice.com"
},
{
"name": "Colton Ehrman",
"email": "coltonje95@gmail.com",
"url": "http://coltonehrman.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/vanillaes/csv.git"
},
"type": "module",
"exports": {
".": {
"import": "./src/index.js",
"types": "./src/index.d.ts",
"browser": "./src/index.min.js"
}
},
"scripts": {
"test": "tape-es",
"lint": "esmtk lint",
"type": "esmtk type",
"build": "npm run build:min && npm run build:typings",
"build:min": "esmtk minify",
"build:typings": "esmtk typings",
"clean": "esmtk clean --minify --typings",
"preview": "esmtk preview",
"preversion": "npm test && npm run lint && npm run type",
"version": "npm run clean && npm run build && git add **/*.d.ts",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"@vanillaes/esmtk": "^2.5.0"
}
}