forked from gajus/eslint-plugin-flowtype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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
{
"name": "eslint-plugin-flowtype",
"description": "Flowtype linting rules for ESLint.",
"version": "2.2.2",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/gajus/eslint-plugin-flowtype"
},
"keywords": [
"eslint",
"plugin",
"flowtype"
],
"author": {
"name": "Gajus Kuizinas",
"email": "[email protected]",
"url": "http://gajus.com"
},
"license": "BSD-3-Clause",
"peerDependencies": {
"eslint": ">=2.0.0"
},
"dependencies": {
"lodash": "^4.6.1"
},
"scripts": {
"lint": "pragmatist lint",
"test": "pragmatist test --type-assertions",
"build": "pragmatist build --es5",
"watch-test": "pragmatist watch-test --type-assertions",
"watch-build": "pragmatist watch-build --es5",
"readme-add-assertions": "babel-node --presets es2015 ./bin/readmeAssertions",
"readme": "node ./node_modules/.bin/gitdown ./.README/README.md --output-file ./README.md; npm run readme-add-assertions",
"create-index": "create-index ./src --update-index"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^6.0.0-beta.6",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"create-index": "^0.1.2",
"eslint": "^2.4.0",
"gitdown": "^2.4.0",
"globby": "^4.0.0",
"mocha": "^2.4.5",
"pragmatist": "^3.0.21"
}
}