musicbrainz-api 0.5.1 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.idea/$CACHE_FILE$ +6 -0
- package/.idea/$PRODUCT_WORKSPACE_FILE$ +19 -0
- package/.idea/checkstyle-idea.xml +16 -0
- package/.idea/codeStyles/Project.xml +38 -0
- package/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/.idea/misc.xml +6 -0
- package/.idea/modules.xml +8 -0
- package/.idea/shelf/Uncommitted_changes_before_Update_at_6-1-2022_11_38_[Default_Changelist]/shelved.patch +58 -0
- package/.idea/shelf/Uncommitted_changes_before_Update_at_6-1-2022_11_38__Default_Changelist_.xml +4 -0
- package/.idea/shelf/Uncommitted_changes_before_rebase_[Default_Changelist]/shelved.patch +738 -0
- package/.idea/shelf/Uncommitted_changes_before_rebase_[Default_Changelist]1/shelved.patch +0 -0
- package/.idea/shelf/Uncommitted_changes_before_rebase__Default_Changelist_.xml +4 -0
- package/.idea/vcs.xml +6 -0
- package/.idea/workspace.xml +700 -0
- package/README.md +290 -287
- package/etc/config.js +32 -0
- package/lib/digest-auth.d.ts +21 -21
- package/lib/digest-auth.js +87 -86
- package/lib/musicbrainz-api.d.ts +156 -140
- package/lib/musicbrainz-api.js +387 -372
- package/lib/musicbrainz.types.d.ts +379 -252
- package/lib/musicbrainz.types.js +16 -15
- package/lib/rate-limiter.d.ts +8 -8
- package/lib/rate-limiter.js +31 -30
- package/lib/xml/xml-isrc-list.d.ts +17 -17
- package/lib/xml/xml-isrc-list.js +22 -21
- package/lib/xml/xml-isrc.d.ts +10 -10
- package/lib/xml/xml-isrc.js +17 -16
- package/lib/xml/xml-metadata.d.ts +6 -6
- package/lib/xml/xml-metadata.js +29 -28
- package/lib/xml/xml-recording.d.ts +24 -24
- package/lib/xml/xml-recording.js +20 -19
- package/package.json +98 -99
- package/yarn-error.log +3608 -0
- package/.travis.yml +0 -22
- package/lgtm.yaml +0 -2
- package/tsconfig.json +0 -9
- package/tslint.json +0 -26
package/.travis.yml
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
language: node_js
|
|
2
|
-
node_js:
|
|
3
|
-
- "8"
|
|
4
|
-
- "10"
|
|
5
|
-
- "12"
|
|
6
|
-
install:
|
|
7
|
-
- yarn install
|
|
8
|
-
script:
|
|
9
|
-
- yarn run lint
|
|
10
|
-
- yarn run compile
|
|
11
|
-
- yarn run test
|
|
12
|
-
|
|
13
|
-
jobs:
|
|
14
|
-
include:
|
|
15
|
-
- stage: after_success
|
|
16
|
-
script:
|
|
17
|
-
- yarn install
|
|
18
|
-
- yarn run test-coverage
|
|
19
|
-
- yarn run send-coveralls
|
|
20
|
-
- yarn add -D codacy-coverage
|
|
21
|
-
#- yarn run send-codacy
|
|
22
|
-
node_js: 12
|
package/lgtm.yaml
DELETED
package/tsconfig.json
DELETED
package/tslint.json
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "tslint:latest",
|
|
3
|
-
"rules": {
|
|
4
|
-
"curly": false,
|
|
5
|
-
"max-classes-per-file": false,
|
|
6
|
-
"semicolon": [true, "always", "ignore-interfaces"],
|
|
7
|
-
"quotemark": [true, "single"],
|
|
8
|
-
"no-bitwise": false,
|
|
9
|
-
"trailing-comma": [true, {"multiline": "never", "singleline": "never"}],
|
|
10
|
-
"object-literal-key-quotes": [true, "as-needed"],
|
|
11
|
-
"variable-name": [true, "ban-keywords"],
|
|
12
|
-
"object-literal-sort-keys": false,
|
|
13
|
-
"max-line-length": [true, 200],
|
|
14
|
-
"switch-default": false,
|
|
15
|
-
"prefer-for-of": false,
|
|
16
|
-
"ordered-imports": false,
|
|
17
|
-
"forin": false,
|
|
18
|
-
"arrow-parens": [true, "ban-single-arg-parens"],
|
|
19
|
-
"no-implicit-dependencies": [true, "dev"],
|
|
20
|
-
"no-submodule-imports": [true, "uuid"],
|
|
21
|
-
"no-var-requires": false
|
|
22
|
-
},
|
|
23
|
-
"jsRules": {
|
|
24
|
-
"curly": false
|
|
25
|
-
}
|
|
26
|
-
}
|