-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.19 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
{
"name": "flowery",
"version": "2.0.8",
"author": {
"name": "Jeremy Lu",
"email": "jeremy@pubulous.com"
},
"license": "MIT",
"contributors": [
{
"name": "",
"url": ""
}
],
"description": "Prettify the result from Facebook Flow type check tool, making it easier to read",
"keywords": [
"npm",
"flow",
"type",
"check",
"react",
"facebook",
"flux",
"redux",
"prettify"
],
"preferGlobal": true,
"main": "./flowery",
"scripts": {
"build": "babel --stage 0 -o ./build/flowery.js flowery.js",
"release": "npm version patch& npm publish",
"start": "babel-node flowery",
"pub": "npm run build && git add . && git commit -am 'chore(app): build' && npm version patch && npm publish"
},
"bin": {
"flowery": "./build/flowery.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coodoo/flowery.git"
},
"homepage": "https://github.com/coodoo/flowery",
"dependencies": {
"chalk": "^1.1.1"
},
"devDependencies": {},
"bugs": {
"url": "https://github.com/coodoo/flowery/issues"
},
"maintainers": [
{
"name": "jlu",
"email": "jeremy@pubulous.com"
}
]
}