-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
70 lines (70 loc) · 1.97 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
{
"name": "@web-scrobbler/metadata-filter",
"version": "3.2.0",
"author": "Alexey <[email protected]>",
"description": "A module for cleaning up artist, album, and song names.",
"main": "dist/filter.js",
"module": "dist/filter.esm.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"repository": {
"type": "git",
"url": "https://github.com/web-scrobbler/metadata-filter.git"
},
"keywords": [
"music",
"filter",
"spotify",
"youtube",
"amazon",
"tidal"
],
"devDependencies": {
"@types/chai": "4.3.6",
"@types/chai-spies": "1.0.6",
"@types/mocha": "10.0.7",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"chai": "4.3.10",
"chai-spies": "1.1.0",
"eslint": "7.32.0",
"eslint-config-web-scrobbler": "2.1.1",
"mocha": "^10.5.2",
"mocha-lcov-reporter": "1.3.0",
"nyc": "17.0.0",
"prettier": "2.2.1",
"prettier-config-web-scrobbler": "0.1.0",
"rollup": "2.79.1",
"rollup-plugin-banner2": "1.3.0",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "0.36.0",
"ts-node": "10.9.2",
"typescript": "5.5.4"
},
"engines": {
"node": ">=10.0.0"
},
"license": "MIT",
"scripts": {
"lint": "eslint \"{src,test}/**/*.ts\" rollup.config.js",
"test": "mocha --require ts-node/register --require test/setup-mocha.ts \"test/**/*.spec.ts\"",
"format": "prettier --write .",
"format:check": "prettier --check .",
"build": "rollup -c",
"clean": "rm -rf dist types",
"prepare": "npm run clean && npm run build",
"test-with-coverage": "nyc npm test",
"upload-coverage": "curl -Ls https://coverage.codacy.com/get.sh | bash -s report -r ./coverage/lcov.info",
"clean-coverage": "rm -rf ./coverage"
},
"eslintConfig": {
"extends": "web-scrobbler/typescript",
"parserOptions": {
"sourceType": "module"
}
},
"prettier": "prettier-config-web-scrobbler"
}