-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.21 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": "check-flow-annotation",
"version": "0.0.0",
"description": "A basic flow type annotation checker",
"keywords": [
"flow",
"flowtype",
"check",
"annotation",
"annotations"
],
"author": "David Babel",
"license": "MIT",
"thanks": "https://www.paypal.me/devilhunter/4",
"engines": {
"node": ">= 8"
},
"main": "src/check-flow-annotation.js",
"repository": {
"type": "git",
"url": "https://github.com/DavidBabel/check-flow-annotation"
},
"bin": {
"check-flow-annotation": "./src/check-flow-annotation.js"
},
"scripts": {
"start": "./src/check-flow-annotation.js",
"test": "jest --coverage",
"test:watch": "jest --watch",
"precommit": "lint-staged"
},
"lint-staged": {
"**/*.{js,json}": [
"prettier --write",
"git add"
]
},
"jest": {
"collectCoverageFrom": [
"src/*.{js}"
],
"testURL": "http://localhost/"
},
"dependencies": {
"argv": "^0.0.2",
"array-flatten": "^2.1.1",
"colors": "^1.3.2",
"firstline": "^2.0.2",
"recursive-readdir": "^2.2.2"
},
"devDependencies": {
"jest": "^23.6.0",
"lint-staged": "^7.2.0",
"prettier": "^1.15.3",
"test-console": "^1.1.0"
}
}