-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.45 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
{
"name": "discogs-data-tools",
"version": "0.2.0",
"description": "Tools to download and process Discogs data dumps",
"main": "cli.js",
"author": "Floris Bernard <[email protected]> (https://github.com/flut1)",
"repository": {
"type": "git",
"url": "[email protected]:flut1/discogs-data-tools.git"
},
"bin": "./cli/index.js",
"keywords": [
"discogs",
"data",
"parser",
"utils"
],
"license": "ISC",
"scripts": {
"prettify": "prettier --write \"*.js\"",
"lint": "eslint .",
"help-to-readme": "node util/helpToReadme",
"docs": "jsdoc2md ./*.js ./*/*.js > api.md",
"prepublish": "npm run help-to-readme && npm run docs"
},
"engines": {
"node": ">=8.2.1"
},
"dependencies": {
"ajv": "^6.7.0",
"cli-progress": "^2.1.1",
"es6-promisify": "^6.0.1",
"eslint-config-prettier": "^3.6.0",
"fs-extra": "^7.0.1",
"glob": "^7.1.3",
"idx": "^2.5.2",
"inquirer": "^6.2.1",
"lodash": "^4.17.11",
"mongodb": "^3.1.10",
"node-expat": "^2.3.17",
"object-get": "^2.1.0",
"ora": "^3.0.0",
"request": "^2.88.0",
"request-progress": "^3.0.0",
"request-promise-native": "^1.0.5",
"sumchecker": "^2.0.2",
"xml2js": "^0.4.19",
"yargs": "^12.0.5"
},
"devDependencies": {
"eslint": "^5.12.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"jsdoc-to-markdown": "^4.0.1",
"prettier": "^1.15.3"
}
}