-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
96 lines (96 loc) · 2.1 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "csv-rex",
"version": "0.7.0",
"description": "A tiny and fast CSV parser for JavaScript.",
"type": "module",
"files": [
"*.mjs",
"*.cjs",
"*.map"
],
"main": "index.mjs",
"exports": {
".": {
"import": {
"default": "./index.mjs"
},
"require": {
"default": "./index.cjs"
}
},
"./parse": {
"import": {
"default": "./parse.mjs"
},
"require": {
"default": "./parse.cjs"
}
},
"./parse-mini": {
"import": {
"default": "./parse-mini.mjs"
},
"require": {
"default": "./parse-mini.cjs"
}
},
"./format": {
"import": {
"default": "./format.mjs"
},
"require": {
"default": "./format.cjs"
}
}
},
"scripts": {
"prepare": "husky install",
"commit-msg": "commitlint --config commitlint.config.cjs --edit",
"pre-commit": "lint-staged",
"start": "docsify serve docs",
"lint": "prettier --write *.{js,json} && standard --fix *.js",
"test": "npm run build && c8 node --test",
"prepublishOnly": "npm test",
"build": "./bin/esbuild",
"bench": "npm run build && node parse.bench.js"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/willfarrell/csv-rex.git"
},
"keywords": [
"csv",
"parse",
"format",
"json"
],
"author": {
"name": "willfarrell",
"url": "https://github.com/willfarrell"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/willfarrell/csv-rex/issues"
},
"homepage": "https://github.com/willfarrell/csv-rex#readme",
"dependencies": {
"csv-rex": "0.7.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"benny": "^3.7.1",
"c8": "^7.11.0",
"docsify-cli": "^4.4.4",
"esbuild": "^0.17.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.0",
"prettier": "^2.0.0",
"sinon": "^15.0.0",
"standard": "^17.0.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/willfarrell"
}
}