-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.05 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": "klp-json",
"version": "0.1.1",
"description": "A JSON plugin for `klp` (Kelpie), the small, fast, and magical command-line data processor.",
"keywords": [
"klp",
"kelpie",
"json",
"csv",
"ssv",
"tsv",
"dsv",
"data-processing",
"deserializer",
"parser",
"serializer",
"marshaller"
],
"homepage": "https://github.com/Yord/klp-json",
"bugs": {
"url": "https://github.com/Yord/klp/issues"
},
"license": "MIT",
"author": "Philipp Wille <philipp.y.wille@gmail.com> (https://github.com/Yord)",
"contributors": [
"Philipp Wille <philipp.y.wille@gmail.com> (https://github.com/Yord)"
],
"main": "./index.js",
"repository": {
"type": "git",
"url": "https://github.com/Yord/klp-json.git"
},
"scripts": {
"start": "./index.js",
"test": "jest --ci --coverage --collectCoverageFrom 'src/**/*.js' --logHeapUsage --passWithNoTests"
},
"engines": {
"node": ">=10.0.0"
},
"private": false,
"devDependencies": {
"fast-check": "2.13.0",
"jest": "26.6.3"
}
}