-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 2.57 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "rym2discogs",
"version": "0.1.0",
"description": "Bring your data from RateYourMusic to Discogs",
"main": "lib",
"scripts": {
"clean": "rm -rf lib",
"compile": "babel -d lib -s inline src",
"lint": "eslint src",
"build": "run-p lint compile",
"watch": "nodemon -q -w src -x 'npm run build'",
"start": "run-p clean watch",
"test": "nyc ava",
"coverage": "nyc report --reporter=lcov | coveralls",
"prepublish": "npm test && npm run build"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-plugin-istanbul": "^3.0.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.20.0",
"babel-preset-latest-node6": "^0.1.0",
"babel-register": "^6.18.0",
"coveralls": "^2.11.15",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-ava": "^4.0.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-promise": "^3.4.0",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.0",
"nyc": "^10.0.0"
},
"dependencies": {
"bluebird": "^3.4.7",
"csv-parse": "^1.1.7",
"disconnect": "^1.0.2",
"joi": "^10.1.0",
"lodash": "^4.17.4",
"winston": "^2.3.0"
},
"repository": {
"type": "git",
"url": "git://github.com/LostCrew/rym2discogs.git"
},
"keywords": [
"rym",
"discogs",
"converter",
"backup",
"migrator"
],
"author": "Emanuele Marchi <emanuele@lostcrew.it>",
"license": "MIT",
"bugs": {
"url": "https://github.com/LostCrew/rym2discogs/issues"
},
"homepage": "https://github.com/LostCrew/rym2discogs#readme",
"babel": {
"presets": [
"latest-node6"
],
"plugins": [
"transform-runtime"
],
"env": {
"test": {
"plugins": [
"instanbul"
]
}
}
},
"eslintConfig": {
"env": {
"mocha": true,
"node": true
},
"extends": [
"airbnb-base",
"plugin:ava/recommended"
],
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"root": true,
"plugins": [
"babel",
"promise",
"ava"
],
"rules": {
"arrow-parens": [
2,
"as-needed",
{
"requireForBlockBody": false
}
]
}
},
"ava": {
"files": [
"tests/*.js",
"!tests/mocks/*"
],
"source": [
"src/*.js"
],
"require": [
"babel-register",
"babel-polyfill"
],
"babel": "inherit",
"verbose": "false"
}
}