-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 1.01 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
{
"name": "flown",
"version": "0.3.1",
"description": "Types library for flow",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/lttb/flown.git"
},
"keywords": [
"flow",
"types",
"flowtype"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/lttb/flown/issues"
},
"homepage": "https://github.com/lttb/flown#readme",
"scripts": {
"test": "flow check --include-warnings --show-all-errors --max-warnings 0",
"lint": "eslint .",
"check": "npm run lint && npm test",
"preversion": "npm run check",
"postversion": "git push --follow-tags && npm publish",
"precommit": "npm test && lint-staged"
},
"lint-staged": {
"*.js": "eslint"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.10.0",
"flow-bin": "^0.91.0",
"lint-staged": "^15.2.7"
}
}