-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.56 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
{
"name": "pdp-csv-processor",
"version": "1.0.0",
"description": "Police Data Portal CSV Processor",
"homepage": "https://github.com/FatalEncounters/pdp-csv-processor#readme",
"license": "MIT",
"main": "./bin/cli.js",
"bin": {
"pdp": "./bin/cli.js"
},
"engines": {
"node": ">=11.6.0"
},
"keywords": [
"cli",
"police-data",
"csv",
"processor"
],
"contributors": [
{
"name": "Peter Schmalfeldt",
"email": "me@peterschmalfeldt.com",
"url": "https://peterschmalfeldt.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/FatalEncounters/pdp-csv-processor.git"
},
"bugs": {
"url": "https://github.com/FatalEncounters/pdp-csv-processor/issues"
},
"scripts": {
"test": "eslint --ext .js ./ --fix && echo '\n【ツ】CODE PERFECTION !!!\n'"
},
"lint-staged": {
"*.js": [
"eslint . --fix",
"git add"
]
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^2.4.0",
"lint-staged": "^8.2.0",
"minimist": "^1.2.0",
"prettier": "^1.18.2"
},
"dependencies": {
"ascii-table": "0.0.9",
"chalk": "^2.4.2",
"csv-parser": "^3.0.0",
"debug": "^4.1.1",
"del": "^6.0.0",
"lodash": "^4.17.20",
"mysql-generator": "^1.0.9",
"nodejs-file-downloader": "^4.1.1",
"onezip": "^5.0.0",
"ora": "^5.3.0",
"progress-extract": "^1.0.2",
"yargs": "^13.2.4"
}
}