forked from ryyppy/flow-vim-quickfix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 929 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 929 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
32
{
"name": "flow-vim-quickfix",
"version": "0.3.0",
"description": "Node based tool to format `flow --json` output to a quickfix friendly format",
"main": "./lib/index.js",
"bin": "./bin/flow-vim-quickfix",
"scripts": {
"prepublish": "npm run build",
"preversion": "npm test",
"postversion": "git push && git push --tags",
"test": "flow check; tape -r babel-register test/**/*.js",
"build": "babel src --out-dir lib",
"build:watch": "npm run build -- --watch"
},
"files": [
"lib/",
"bin/"
],
"keywords": [],
"author": "Patrick Stapfer <p.stapfer@deadlock.at>",
"license": "MIT",
"repository": "ryyppy/flow-vim-quickfix",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"flow-bin": "^0.30.0",
"tape": "^4.6.0"
}
}