-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.52 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": "scrobbles",
"version": "0.3.0",
"description": "A Node.js library to read last.fm \"scrobbled\" for a given user",
"main": "lib/index.js",
"files": [
"lib/index.js",
"lib/cli.js"
],
"bin": {
"scrobbles": "lib/cli.js"
},
"type": "module",
"engines": {
"node": ">=12.0.0"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "git+https://github.com/lmammino/scrobbles.git"
},
"author": {
"name": "Luciano Mammino",
"url": "http://loige.co"
},
"license": "MIT",
"keywords": [
"music",
"lastfm",
"last.fm",
"scrobble",
"scrobbling"
],
"scripts": {
"test:lint": "eslint .",
"test:unit": "c8 --reporter=lcov --reporter=html tap --reporter=specy --no-coverage",
"test": "npm run test:lint && npm run test:unit",
"prepare": "husky install"
},
"tap": {
"test-env": {
"NODE_OPTIONS": "--experimental-loader @istanbuljs/esm-loader-hook"
}
},
"devDependencies": {
"@istanbuljs/esm-loader-hook": "^0.1.2",
"c8": "^7.7.1",
"eslint": "^7.23.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"nock": "^13.0.11",
"tap": "^15.0.4"
},
"dependencies": {
"axios": "^0.21.1",
"cli-progress": "^3.10.0",
"csv": "^5.5.3",
"ow": "^0.23.0",
"yargs": "^17.3.1"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}