forked from gajus/eslint-plugin-flowtype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.06 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"author": {
"email": "[email protected]",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"dependencies": {
"lodash": "^4.17.21",
"string-natural-compare": "^3.0.1"
},
"description": "Flowtype linting rules for ESLint.",
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/node": "^7.15.4",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/preset-env": "^7.15.6",
"@babel/register": "^7.15.3",
"ajv": "^8.6.3",
"babel-eslint": "^10.1.0",
"babel-plugin-add-module-exports": "^1.0.4",
"chai": "^4.3.4",
"eclint": "^2.8.1",
"eslint": "^7.32.0",
"eslint-config-canonical": "^27.0.1",
"gitdown": "^3.1.4",
"glob": "^7.1.7",
"husky": "^7.0.2",
"jsonlint": "^1.6.3",
"mocha": "^9.1.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.7"
},
"engines": {
"node": "^10.12.0 || >=12.0.0"
},
"husky": {
"hooks": {
"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/**/*"
}
},
"keywords": [
"eslint",
"plugin",
"flowtype"
],
"license": "BSD-3-Clause",
"main": "./dist/index.js",
"name": "eslint-plugin-flowtype",
"peerDependencies": {
"eslint": "^7.32.0"
},
"repository": {
"type": "git",
"url": "https://github.com/gajus/eslint-plugin-flowtype"
},
"scripts": {
"build": "rimraf ./dist && babel ./src --out-dir ./dist --copy-files",
"check-docs": "babel-node ./src/bin/checkDocs",
"check-tests": "babel-node ./src/bin/checkTests",
"create-readme": "gitdown ./.README/README.md --output-file ./README.md && npm run documentation-add-assertions",
"documentation-add-assertions": "babel-node ./src/bin/addAssertions",
"format-json": "jsonlint --sort-keys --in-place --indent \" \" ./src/configs/recommended.json",
"lint": "eslint ./src ./tests",
"test": "mocha --require @babel/register ./tests/rules/index.js"
},
"version": "0.0.0-development"
}