-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.12 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
{
"name": "pxi",
"version": "0.37.0",
"description": "Small, fast, and magical command-line data processor",
"keywords": [
"pxi",
"pixie",
"json",
"csv",
"ssv",
"tsv",
"dsv",
"data-processing",
"deserializer",
"parser",
"serializer",
"marshaller"
],
"homepage": "https://github.com/Yord/pxi",
"bugs": {
"url": "https://github.com/Yord/pxi/issues"
},
"license": "MIT",
"author": "Philipp Wille <[email protected]> (https://github.com/Yord)",
"contributors": [
"Philipp Wille <[email protected]> (https://github.com/Yord)"
],
"main": "./index.js",
"bin": {
"pxi": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Yord/pxi.git"
},
"scripts": {
"start": "./index.js",
"test": "jest --ci --coverage --logHeapUsage --passWithNoTests"
},
"dependencies": {
"pxi-dsv": "0.10.0",
"pxi-dust": "0.14.0",
"pxi-json": "0.12.0",
"yargs": "15.0.2"
},
"engines": {
"node": ">=8.3.0"
},
"private": false,
"devDependencies": {
"fast-check": "1.23.0",
"jest": "25.1.0"
}
}