forked from gajus/eslint-plugin-flowtype
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.63 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
{
"author": {
"email": "[email protected]",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"dependencies": {
"lodash": "^4.15.0"
},
"description": "Flowtype linting rules for ESLint.",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.1.10",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"eslint": "^3.16.0",
"eslint-config-canonical": "1.8.1",
"gitdown": "^2.5.0",
"husky": "^0.11.7",
"jsonlint": "^1.6.2",
"mocha": "^3.0.2",
"semantic-release": "^6.3.2"
},
"engines": {
"node": ">=4"
},
"keywords": [
"eslint",
"plugin",
"flowtype"
],
"license": "BSD-3-Clause",
"main": "./dist/index.js",
"name": "eslint-plugin-flowtype",
"peerDependencies": {
"eslint": ">=2.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/gajus/eslint-plugin-flowtype"
},
"scripts": {
"build": "babel ./src --out-dir ./dist --copy-files",
"documentation": "gitdown ./.README/README.md --output-file ./README.md; npm run documentation-add-assertions",
"documentation-add-assertions": "babel-node ./bin/readmeAssertions",
"format-json": "jsonlint --sort-keys --in-place --indent ' ' ./src/configs/recommended.json && echo '' >> ./src/configs/recommended.json",
"lint": "eslint ./src ./tests",
"precommit": "npm run lint && npm run test && npm run format-json",
"test": "mocha --compilers js:babel-register ./tests/rules/index.js"
},
"version": "2.30.1"
}