forked from web-scrobbler/web-scrobbler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.14 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
{
"name": "web-scrobbler",
"version": "2.40.0",
"author": "David Šabata <[email protected]>",
"description": "Scrobble music all around the web!",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/web-scrobbler/web-scrobbler.git"
},
"dependencies": {
"@fortawesome/fontawesome-free": "5.15.2",
"blueimp-md5": "2.18.0",
"bootstrap": "4.5.3",
"jquery": "3.5.1",
"metadata-filter": "1.1.1",
"requirejs": "2.3.6",
"webextension-polyfill": "0.7.0"
},
"devDependencies": {
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"chai-spies": "1.0.0",
"eslint-config-web-scrobbler": "1.1.0",
"grunt": "1.3.0",
"grunt-bump": "0.8.0",
"grunt-cli": "1.3.2",
"grunt-contrib-clean": "2.0.0",
"grunt-contrib-compress": "2.0.0",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-imagemin": "4.0.0",
"grunt-eslint": "23.0.0",
"grunt-jsonlint": "2.1.3",
"grunt-lintspaces": "0.9.0",
"grunt-mocha-cli": "7.0.0",
"grunt-preprocess": "5.1.0",
"grunt-remark": "10.0.0",
"grunt-replace-json": "0.1.0",
"grunt-stylelint": "0.16.0",
"jit-grunt": "0.10.0",
"mocha": "8.2.1",
"mocha-lcov-reporter": "1.3.0",
"node-define": "0.1.1",
"nyc": "15.1.0",
"prettier-config-web-scrobbler": "^0.1.0",
"remark-preset-lint-recommended": "5.0.0",
"stylelint": "13.9.0",
"stylelint-config-web-scrobbler": "0.2.0"
},
"engines": {
"node": ">=12.13.0"
},
"scripts": {
"lint": "grunt lint",
"test": "grunt test",
"test-with-coverage": "nyc grunt test",
"upload-coverage": "curl -Ls https://coverage.codacy.com/get.sh | bash -s report -r ./coverage/lcov.info",
"clean-coverage": "rm -rf ./coverage",
"postinstall": "node scripts/copy-vendor.js && node scripts/make-list.js"
},
"eslintConfig": {
"extends": "web-scrobbler",
"parserOptions": {
"sourceType": "script"
}
},
"prettier": "prettier-config-web-scrobbler",
"remark": {
"plugins": [
"remark-preset-lint-recommended"
]
},
"stylelint": {
"extends": "stylelint-config-web-scrobbler"
},
"license": "MIT"
}