source: imaps-frontend/node_modules/@eslint-community/eslint-utils/package.json@ 0c6b92a

main
Last change on this file since 0c6b92a was 0c6b92a, checked in by stefan toskovski <stefantoska84@…>, 5 weeks ago

Pred finalna verzija

  • Property mode set to 100644
File size: 2.5 KB
Line 
1{
2 "name": "@eslint-community/eslint-utils",
3 "version": "4.4.1",
4 "description": "Utilities for ESLint plugins.",
5 "keywords": [
6 "eslint"
7 ],
8 "homepage": "https://github.com/eslint-community/eslint-utils#readme",
9 "bugs": {
10 "url": "https://github.com/eslint-community/eslint-utils/issues"
11 },
12 "repository": {
13 "type": "git",
14 "url": "https://github.com/eslint-community/eslint-utils"
15 },
16 "license": "MIT",
17 "author": "Toru Nagashima",
18 "sideEffects": false,
19 "exports": {
20 ".": {
21 "import": "./index.mjs",
22 "require": "./index.js"
23 },
24 "./package.json": "./package.json"
25 },
26 "main": "index",
27 "module": "index.mjs",
28 "files": [
29 "index.*"
30 ],
31 "scripts": {
32 "prebuild": "npm run -s clean",
33 "build": "rollup -c",
34 "clean": "rimraf .nyc_output coverage index.*",
35 "coverage": "opener ./coverage/lcov-report/index.html",
36 "docs:build": "vitepress build docs",
37 "docs:watch": "vitepress dev docs",
38 "format": "npm run -s format:prettier -- --write",
39 "format:prettier": "prettier .",
40 "format:check": "npm run -s format:prettier -- --check",
41 "lint:eslint": "eslint .",
42 "lint:format": "npm run -s format:check",
43 "lint:installed-check": "installed-check -v -i installed-check -i npm-run-all2 -i knip",
44 "lint:knip": "knip",
45 "lint": "run-p lint:*",
46 "test": "c8 mocha --reporter dot \"test/*.mjs\"",
47 "preversion": "npm test && npm run -s build",
48 "postversion": "git push && git push --tags",
49 "prewatch": "npm run -s clean",
50 "watch": "warun \"{src,test}/**/*.mjs\" -- npm run -s test:mocha"
51 },
52 "dependencies": {
53 "eslint-visitor-keys": "^3.4.3"
54 },
55 "devDependencies": {
56 "@eslint-community/eslint-plugin-mysticatea": "^15.6.1",
57 "c8": "^8.0.1",
58 "dot-prop": "^7.2.0",
59 "eslint": "^8.57.1",
60 "installed-check": "^8.0.1",
61 "knip": "^5.33.3",
62 "mocha": "^9.2.2",
63 "npm-run-all2": "^6.2.3",
64 "opener": "^1.5.2",
65 "prettier": "2.8.8",
66 "rimraf": "^3.0.2",
67 "rollup": "^2.79.2",
68 "rollup-plugin-sourcemaps": "^0.6.3",
69 "semver": "^7.6.3",
70 "vitepress": "^1.4.1",
71 "warun": "^1.0.0"
72 },
73 "peerDependencies": {
74 "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
75 },
76 "engines": {
77 "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
78 },
79 "funding": "https://opencollective.com/eslint"
80}
Note: See TracBrowser for help on using the repository browser.