-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
65 lines (65 loc) · 1.63 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
{
"name": "qsv",
"version": "0.5.0",
"description": "Query CSV and TSV files with a SQL like syntax.",
"keywords": [
"csv",
"sql",
"cli",
"parser"
],
"main": "index.js",
"bin": {
"qsv": "./bin/qsv.js"
},
"scripts": {
"ci_build_full": "jest --coverage && stryker run",
"test": "jest",
"testw": "jest --watch",
"testmu": "stryker run",
"lint": "eslint --fix",
"build-docs": "jsdoc src/ -c .jsdoc.conf.json"
},
"author": "Pascal Spiesz <pascal@slamcode.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/herrfugbaum/qsv.git"
},
"bugs": {
"url": "https://github.com/herrfugbaum/qsv/issues"
},
"homepage": "https://github.com/herrfugbaum/qsv#readme",
"dependencies": {
"@herrfugbaum/q": "^0.2.2",
"chalk": "^2.4.1",
"fs-extra": "^7.0.1",
"lodash": "^4.17.11",
"papaparse": "^4.6.2",
"table": "^5.1.0",
"untildify": "^3.0.3",
"update-check": "^1.5.2",
"yargs": "^12.0.2"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.0",
"jest": "^23.6.0",
"jsdoc": "^3.5.5",
"mock-fs": "^4.7.0",
"prettier": "^1.15.2",
"stryker": "^0.32.1",
"stryker-api": "^0.21.5",
"stryker-baseline-reporter": "^1.0.3",
"stryker-html-reporter": "^0.16.7",
"stryker-javascript-mutator": "^0.12.1",
"stryker-jest-runner": "^1.2.7"
}
}