forked from jamiebuilds/glow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.88 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
58
59
60
61
62
63
64
65
66
{
"name": "glow",
"version": "1.1.1",
"description": "Make your Flow errors GLOW",
"main": "index.js",
"bin": {
"glow": "cli.js"
},
"repository": "https://github.com/thejameskyle/glow",
"author": "James Kyle <[email protected]>",
"license": "MIT",
"keywords": ["flow", "cli", "bin", "errors", "reporter", "ui", "interface"],
"files": ["index.js", "cli.js", "dist"],
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"flow": "flow",
"test": "ava",
"format": "prettier --write **/*.{md,json,js}",
"clean": "rm -rf dist",
"build:legacy": "BABEL_ENV=legacy babel src -d dist/legacy",
"build:modern": "BABEL_ENV=modern babel src -d dist/modern",
"build": "yarn run clean && yarn build:legacy && yarn build:modern",
"prepublish": "yarn flow && yarn build && yarn test",
"precommit": "lint-staged"
},
"dependencies": {
"@babel/code-frame": "^7.0.0-beta.38",
"babel-runtime": "^6.26.0",
"beeper": "^1.1.1",
"blessed": "^0.1.81",
"chalk": "^2.3.0",
"chokidar": "^2.0.0",
"clear": "^0.0.1",
"find-up": "^2.1.0",
"lodash.debounce": "^4.0.8",
"meow": "^4.0.0",
"multimatch": "^2.1.0",
"read-pkg-up": "^3.0.0",
"signal-exit": "^3.0.2",
"spawndamnit": "^1.0.0",
"strip-ansi": "^4.0.0",
"util.promisify": "^1.0.0"
},
"peerDependencies": {
"flow-bin": "^0.63.1"
},
"devDependencies": {
"ava": "^0.24.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"fixturez": "^1.1.0",
"flow-bin": "^0.63.1",
"husky": "^0.14.3",
"lint-staged": "^6.0.1",
"prettier": "^1.10.2"
},
"lint-staged": {
"*.{js,json,md}": ["prettier --write", "git add"]
}
}