-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 792 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 792 Bytes
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
{
"name": "flow-result-checker",
"version": "1.1.0",
"description": "A package to avoid reporting errors in `node_modules`.",
"main": "index.js",
"bin": {
"flow-result-checker": "./index.js"
},
"repository": "https://github.com/jbreckel/flow-result-checker.git",
"author": "Julius Breckel <julius.breckel@signavio.com>",
"license": "MIT",
"scripts": {
"test": "jest",
"lint": "eslint index.js test/"
},
"devDependencies": {
"cross-spawn": "^5.1.0",
"eslint": "^4.8.0",
"eslint-config-8select": "^1.0.0",
"eslint-plugin-prettier": "^2.3.1",
"flow-bin": "^0.59.0",
"jest": "^18.1.0",
"prettier": "^1.8.2"
},
"dependencies": {
"chalk": "^1.1.3",
"commander": "^2.9.0",
"mkdirp": "^0.5.1",
"ora": "^1.1.0"
}
}