| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- {
- "name": "eslint-plugin-promise",
- "version": "3.8.0",
- "description": "Enforce best practices for JavaScript promises",
- "keywords": [
- "eslint",
- "eslintplugin",
- "eslint-plugin",
- "promise",
- "promises"
- ],
- "author": "jden <jason@denizac.org>",
- "repository": "git@github.com:xjamundx/eslint-plugin-promise.git",
- "scripts": {
- "precommit": "lint-staged",
- "test": "jest",
- "lint": "eslint index.js rules __tests__ --ignore-pattern '**/*.json'"
- },
- "devDependencies": {
- "doctoc": "^1.3.0",
- "eslint": "^4.17.0",
- "eslint-config-prettier": "^2.9.0",
- "eslint-config-standard": "^11.0.0-beta.0",
- "eslint-plugin-eslint-plugin": "^1.4.0",
- "eslint-plugin-import": "^2.8.0",
- "eslint-plugin-jest": "^21.12.2",
- "eslint-plugin-node": "^6.0.0",
- "eslint-plugin-prettier": "^2.6.0",
- "eslint-plugin-promise": "./",
- "eslint-plugin-standard": "^3.0.1",
- "husky": "^0.14.3",
- "jest": "^22.4.2",
- "jest-runner-eslint": "^0.4.0",
- "lint-staged": "^6.1.0",
- "prettier": "^1.10.2"
- },
- "engines": {
- "node": ">=4"
- },
- "license": "ISC",
- "lint-staged": {
- "concurrent": false,
- "linters": {
- "{README.md,CONTRIBUTING.md}": [
- "doctoc --maxlevel 3 --notitle",
- "git add"
- ],
- "*.js": ["prettier --write", "eslint --fix", "git add"],
- "*.+(json|md)": ["prettier --write", "git add"]
- }
- },
- "prettier": {
- "semi": false,
- "singleQuote": true,
- "proseWrap": "always"
- },
- "jest": {
- "projects": [
- {
- "displayName": "test",
- "testEnvironment": "node"
- },
- {
- "runner": "jest-runner-eslint",
- "displayName": "lint",
- "testMatch": [
- "<rootDir>/rules/**/*.js",
- "<rootDir>/__tests__/**/*.js",
- "<rootDir>/index.js"
- ]
- }
- ]
- }
- }
|