-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
73 lines (73 loc) · 2.25 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
67
68
69
70
71
72
73
{
"name": "thrift2flow",
"version": "0.12.1",
"description": "Convert Thrift definitions to Flowtype declarations",
"homepage": "https://github.com/uber-node/thrift2flow",
"bugs": {
"url": "https://github.com/uber-node/thrift2flow/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/uber-node/thrift2flow.git"
},
"keywords": [
"thrift",
"flowtype",
"type",
"javascript",
"js"
],
"author": "Keith Lea",
"license": "MIT",
"main": "lib/index.js",
"bin": {
"thrift2flow": "lib/cli.js"
},
"scripts": {
"build": "babel src/main -d lib --source-maps && cp src/flow-entry.js lib/index.js.flow",
"watch": "babel src/main -d lib --source-maps --watch",
"check": "npm run prettier && npm run lint && npm run test",
"debug": "node --nolazy --inspect-brk=9229 lib/index.js",
"download-typedefs": "mkdir -p typedefs && curl -o typedefs/flowResult.js https://raw.githubusercontent.com/facebook/flow/master/tsrc/flowResult.js",
"flow": "flow",
"lint": "eslint src",
"prepare": "npm run build",
"prettier": "prettier --single-quote --bracket-spacing false --parser flow --tab-width 2 --print-width 100 --write \"{src,test}/**/*.js\"",
"test": "rm -rf .tmp && yarn jest .test.js"
},
"engines": {
"node": ">=6.10",
"npm": ">=4.0"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"common-path-prefix": "^1.0.0",
"mkdirp": "^0.5.1",
"source-map-support": "^0.4.15",
"thriftrw": "^3.11.0",
"uuid": "^3.3.2",
"yargs": "^8.0.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-syntax-flow": "^7.2.0",
"@babel/plugin-transform-flow-strip-types": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-eslint": "^9.0.0",
"eslint": "^5.6.0",
"eslint-config-fusion": "^4.0.0",
"eslint-plugin-cup": "^2.0.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.3.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.94.0",
"fs-extra": "^4.0.3",
"jest": "^24.1.0",
"prettier": "^1.14.2",
"tmp": "^0.0.33"
}
}