UNPKG

2.09 kBJSONView Raw
1{
2 "author": {
3 "email": "gajus@gajus.com",
4 "name": "Gajus Kuizinas",
5 "url": "http://gajus.com"
6 },
7 "dependencies": {
8 "lodash": "^4.17.15",
9 "string-natural-compare": "^3.0.1"
10 },
11 "description": "Flowtype linting rules for ESLint.",
12 "devDependencies": {
13 "@babel/cli": "^7.8.4",
14 "@babel/core": "^7.9.6",
15 "@babel/node": "^7.8.7",
16 "@babel/plugin-proposal-object-rest-spread": "^7.9.6",
17 "@babel/preset-env": "^7.9.6",
18 "@babel/register": "^7.9.0",
19 "ajv": "^6.12.2",
20 "babel-eslint": "^10.1.0",
21 "babel-plugin-add-module-exports": "^1.0.2",
22 "chai": "^4.2.0",
23 "eclint": "^2.8.1",
24 "eslint": "^7.1.0",
25 "eslint-config-canonical": "^20.0.4",
26 "gitdown": "^3.1.3",
27 "glob": "^7.1.6",
28 "husky": "^4.2.5",
29 "jsonlint": "^1.6.3",
30 "mocha": "^7.2.0",
31 "rimraf": "^3.0.2",
32 "semantic-release": "^17.0.8"
33 },
34 "engines": {
35 "node": "^10.12.0 || >=12.0.0"
36 },
37 "husky": {
38 "hooks": {
39 "pre-commit": "npm run check-docs && npm run check-tests && npm run lint && npm run test && npm run build && npm run format-json && eclint fix ./src/**/* ./tests/**/*"
40 }
41 },
42 "keywords": [
43 "eslint",
44 "plugin",
45 "flowtype"
46 ],
47 "license": "BSD-3-Clause",
48 "main": "./dist/index.js",
49 "name": "eslint-plugin-flowtype",
50 "peerDependencies": {
51 "eslint": "^7.1.0"
52 },
53 "repository": {
54 "type": "git",
55 "url": "https://github.com/gajus/eslint-plugin-flowtype"
56 },
57 "scripts": {
58 "build": "rimraf ./dist && babel ./src --out-dir ./dist --copy-files",
59 "check-docs": "babel-node ./src/bin/checkDocs",
60 "check-tests": "babel-node ./src/bin/checkTests",
61 "create-readme": "gitdown ./.README/README.md --output-file ./README.md && npm run documentation-add-assertions",
62 "documentation-add-assertions": "babel-node ./src/bin/addAssertions",
63 "format-json": "jsonlint --sort-keys --in-place --indent \" \" ./src/configs/recommended.json",
64 "lint": "eslint ./src ./tests",
65 "test": "mocha --require @babel/register ./tests/rules/index.js"
66 },
67 "version": "5.6.0"
68}