This repository was archived by the owner on Mar 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.59 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
{
"name": "@anvilabs/flow-libdefs",
"version": "0.0.0-development",
"description": "Anvilabs' custom libdefs for Flow",
"keywords": ["flow", "flowtype", "flow-typed", "libdefs", "definitions"],
"repository": "anvilabs/flow-libdefs",
"homepage": "https://github.com/anvilabs/flow-libdefs#readme",
"bugs": {
"url": "https://github.com/anvilabs/flow-libdefs/issues"
},
"license": "MIT",
"author": {
"name": "Ayan Yenbekbay",
"email": "[email protected]",
"url": "http://yenbekbay.me"
},
"engines": {
"node": ">=6.0.0"
},
"files": ["definitions"],
"scripts": {
"typecheck": "flow .",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"test": "run-p --silent typecheck lint",
"precommit": "lint-staged",
"commitmsg": "validate-commit-msg",
"prepush": "yarn test",
"semantic-release":
"semantic-release pre && npm publish && semantic-release post"
},
"lint-staged": {
"{*.js,{definitions,test}/**/*.js}": ["eslint --cache --fix", "git add"],
"{*.json,.vscode/*.json}": ["prettier --write", "git add"]
},
"config": {
"validate-commit-msg": {
"maxSubjectLength": 72,
"types": "conventional-commit-types"
}
},
"peerDependencies": {
"flow-bin": "0.42.0 - 0.54.x"
},
"devDependencies": {
"eslint": "^4.6.1",
"eslint-config-anvilabs": "^11.0.0",
"flow-bin": "^0.54.0",
"husky": "^0.14.3",
"lint-staged": "^4.1.1",
"lodash": "^4.17.4",
"npm-run-all": "^4.1.1",
"prettier": "^1.6.1",
"semantic-release": "^7.0.2",
"validate-commit-msg": "^2.14.0"
}
}