forked from facebookarchive/flow-remove-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.03 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
{
"name": "flow-remove-types",
"version": "1.2.3",
"description": "Removes Flow type annotations from JavaScript files with speed and simplicity.",
"author": "Lee Byron <[email protected]> (http://leebyron.com/)",
"license": "BSD-3-Clause",
"main": "index.js",
"bin": {
"flow-remove-types": "./flow-remove-types",
"flow-node": "./flow-node"
},
"files": [
"index.js",
"register.js",
"flow-remove-types",
"flow-node",
"LICENSE",
"PATENTS"
],
"homepage": "https://github.com/flowtype/flow-remove-types",
"bugs": {
"url": "https://github.com/flowtype/flow-remove-types/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/flowtype/flow-remove-types.git"
},
"scripts": {
"test": "./test.sh",
"test-update": "./test-update.sh",
"postpublish": "./publish-npm-alias.sh"
},
"keywords": [
"flow",
"flowtype",
"compiler",
"transpiler",
"transform",
"es6"
],
"dependencies": {
"babylon": "^6.15.0",
"vlq": "^0.2.1"
}
}