1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- {
- "name": "eslint-plugin-promise",
- "version": "5.2.0",
- "description": "Enforce best practices for JavaScript promises",
- "keywords": [
- "eslint",
- "eslintplugin",
- "eslint-plugin",
- "promise",
- "promises"
- ],
- "author": "jden <jason@denizac.org>",
- "contributors": [
- "Brett Zamir"
- ],
- "repository": "https://github.com/xjamundx/eslint-plugin-promise",
- "homepage": "https://github.com/xjamundx/eslint-plugin-promise",
- "bugs": "https://github.com/xjamundx/eslint-plugin-promise/issues",
- "scripts": {
- "precommit": "lint-staged --concurrent false",
- "test": "jest --coverage",
- "lint": "eslint rules __tests__ index.js",
- "format": "prettier --write '**/*.js'"
- },
- "dependencies": {},
- "devDependencies": {
- "doctoc": "^2.0.0",
- "eslint": "^7.23.0",
- "eslint-config-prettier": "^8.1.0",
- "eslint-plugin-eslint-plugin": "^3.0.0",
- "eslint-plugin-jest": "^24.3.4",
- "eslint-plugin-node": "^11.1.0",
- "eslint-plugin-prettier": "^3.3.1",
- "husky": "^6.0.0",
- "jest": "^26.6.3",
- "jest-runner-eslint": "^0.10.0",
- "lint-staged": "^10.5.4",
- "prettier": "^2.2.1"
- },
- "peerDependencies": {
- "eslint": "^7.0.0"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
- },
- "license": "ISC",
- "lint-staged": {
- "{README.md,CONTRIBUTING.md}": [
- "doctoc --maxlevel 3 --notitle"
- ],
- "*.js": [
- "prettier --write",
- "eslint --fix"
- ],
- "*.+(json|md)": [
- "prettier --write"
- ]
- },
- "prettier": {
- "semi": false,
- "singleQuote": true,
- "proseWrap": "always"
- },
- "jest": {
- "coverageThreshold": {
- "global": {
- "branches": 100,
- "functions": 100,
- "lines": 100,
- "statements": 100
- }
- },
- "projects": [
- {
- "displayName": "test",
- "testEnvironment": "node"
- },
- {
- "runner": "jest-runner-eslint",
- "displayName": "lint",
- "testMatch": [
- "<rootDir>/rules/**/*.js",
- "<rootDir>/__tests__/**/*.js",
- "<rootDir>/index.js"
- ]
- }
- ]
- }
- }
|