mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-01 13:42:20 +00:00
0.2.0 - Mid migration
This commit is contained in:
parent
139e6a915e
commit
7e38fdbd7d
42393 changed files with 5358157 additions and 62 deletions
21
web/node_modules/eslint-utils/LICENSE
generated
vendored
Normal file
21
web/node_modules/eslint-utils/LICENSE
generated
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2018 Toru Nagashima
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
38
web/node_modules/eslint-utils/README.md
generated
vendored
Normal file
38
web/node_modules/eslint-utils/README.md
generated
vendored
Normal file
|
@ -0,0 +1,38 @@
|
|||
# eslint-utils
|
||||
|
||||
[](https://www.npmjs.com/package/eslint-utils)
|
||||
[](http://www.npmtrends.com/eslint-utils)
|
||||
[](https://github.com/mysticatea/eslint-utils/actions)
|
||||
[](https://codecov.io/gh/mysticatea/eslint-utils)
|
||||
[](https://david-dm.org/mysticatea/eslint-utils)
|
||||
|
||||
## 🏁 Goal
|
||||
|
||||
This package provides utility functions and classes for make ESLint custom rules.
|
||||
|
||||
For examples:
|
||||
|
||||
- [getStaticValue](https://eslint-utils.mysticatea.dev/api/ast-utils.html#getstaticvalue) evaluates static value on AST.
|
||||
- [ReferenceTracker](https://eslint-utils.mysticatea.dev/api/scope-utils.html#referencetracker-class) checks the members of modules/globals as handling assignments and destructuring.
|
||||
|
||||
## 📖 Usage
|
||||
|
||||
See [documentation](https://eslint-utils.mysticatea.dev/).
|
||||
|
||||
## 📰 Changelog
|
||||
|
||||
See [releases](https://github.com/mysticatea/eslint-utils/releases).
|
||||
|
||||
## ❤️ Contributing
|
||||
|
||||
Welcome contributing!
|
||||
|
||||
Please use GitHub's Issues/PRs.
|
||||
|
||||
### Development Tools
|
||||
|
||||
- `npm test` runs tests and measures coverage.
|
||||
- `npm run clean` removes the coverage result of `npm test` command.
|
||||
- `npm run coverage` shows the coverage result of the last `npm test` command.
|
||||
- `npm run lint` runs ESLint.
|
||||
- `npm run watch` runs tests on each file change.
|
1956
web/node_modules/eslint-utils/index.js
generated
vendored
Normal file
1956
web/node_modules/eslint-utils/index.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
1
web/node_modules/eslint-utils/index.js.map
generated
vendored
Normal file
1
web/node_modules/eslint-utils/index.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1914
web/node_modules/eslint-utils/index.mjs
generated
vendored
Normal file
1914
web/node_modules/eslint-utils/index.mjs
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
1
web/node_modules/eslint-utils/index.mjs.map
generated
vendored
Normal file
1
web/node_modules/eslint-utils/index.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
78
web/node_modules/eslint-utils/package.json
generated
vendored
Normal file
78
web/node_modules/eslint-utils/package.json
generated
vendored
Normal file
|
@ -0,0 +1,78 @@
|
|||
{
|
||||
"name": "eslint-utils",
|
||||
"version": "3.0.0",
|
||||
"description": "Utilities for ESLint plugins.",
|
||||
"engines": {
|
||||
"node": "^10.0.0 || ^12.0.0 || >= 14.0.0"
|
||||
},
|
||||
"sideEffects": false,
|
||||
"main": "index",
|
||||
"module": "index.mjs",
|
||||
"files": [
|
||||
"index.*"
|
||||
],
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./index.mjs",
|
||||
"require": "./index.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"dependencies": {
|
||||
"eslint-visitor-keys": "^2.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@mysticatea/eslint-plugin": "^13.0.0",
|
||||
"codecov": "^3.6.1",
|
||||
"dot-prop": "^4.2.0",
|
||||
"eslint": "^7.24.0",
|
||||
"esm": "^3.2.25",
|
||||
"espree": "github:eslint/espree#1c744b3a602b783926344811a9459b92afe57444",
|
||||
"mocha": "^6.2.2",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"nyc": "^14.1.1",
|
||||
"opener": "^1.5.1",
|
||||
"prettier": "~2.3.0",
|
||||
"rimraf": "^3.0.0",
|
||||
"rollup": "^1.25.0",
|
||||
"rollup-plugin-sourcemaps": "^0.4.2",
|
||||
"semver": "^7.3.2",
|
||||
"vuepress": "^1.2.0",
|
||||
"warun": "^1.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"eslint": ">=5"
|
||||
},
|
||||
"scripts": {
|
||||
"prebuild": "npm run -s clean",
|
||||
"build": "rollup -c",
|
||||
"clean": "rimraf .nyc_output coverage index.*",
|
||||
"codecov": "nyc report -r lcovonly && codecov",
|
||||
"coverage": "opener ./coverage/lcov-report/index.html",
|
||||
"docs:build": "vuepress build docs",
|
||||
"docs:watch": "vuepress dev docs",
|
||||
"format": "npm run -s format:prettier -- --write",
|
||||
"format:prettier": "prettier docs/.vuepress/config.js src/**/*.js test/**/*.js rollup.config.js .vscode/*.json *.json .github/**/*.yml *.yml docs/**/*.md *.md",
|
||||
"lint": "eslint docs/.vuepress/config.js src test rollup.config.js",
|
||||
"test": "run-s \"format:prettier -- --check\" lint build test:mocha",
|
||||
"test:mocha": "nyc mocha --reporter dot \"test/*.js\"",
|
||||
"preversion": "npm test && npm run -s build",
|
||||
"postversion": "git push && git push --tags",
|
||||
"prewatch": "npm run -s clean",
|
||||
"watch": "warun \"{src,test}/**/*.js\" -- npm run -s test:mocha"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/mysticatea/eslint-utils.git"
|
||||
},
|
||||
"keywords": [
|
||||
"eslint"
|
||||
],
|
||||
"author": "Toru Nagashima",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/mysticatea/eslint-utils/issues"
|
||||
},
|
||||
"homepage": "https://github.com/mysticatea/eslint-utils#readme",
|
||||
"funding": "https://github.com/sponsors/mysticatea"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue