-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
56 lines (56 loc) · 1.37 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": "reasonably-typed",
"version": "2.0.0-beta4",
"description": "Converts flow definitions to Bucklescript definitions",
"bin": {
"retyped": "./lib/cli.js"
},
"main": "lib/index.js",
"scripts": {
"test": "jest",
"local": "node lib/js/2/cli.js",
"build": "bsb -clean-world -make-world",
"build-docs": "browserify -e lib/index.js -o docs/retyped.js -s retyped"
},
"repository": {
"type": "git",
"url": "https://github.com/rrdelaney/ReasonablyTyped"
},
"keywords": [
"Reason",
"OCaml",
"Bucklescript",
"Flow"
],
"author": "Ryan Delaney <rrdelaney@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rrdelaney/ReasonablyTyped/issues"
},
"homepage": "https://github.com/rrdelaney/ReasonablyTyped",
"dependencies": {
"@glennsl/bs-json": "^2.0.0",
"babel-code-frame": "^6.26.0",
"chalk": "^2.1.0",
"commander": "^2.15.1",
"css-tree": "^1.0.0-alpha.28",
"flow-dev-tools": "bsansouci/flow#bsb-support",
"graphql": "^0.13.2",
"meow": "^3.7.0",
"prettier": "^1.11.1",
"reason": "^3.1.0",
"typescript": "^2.7.2"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.4.2",
"browserify": "^16.1.1",
"bs-platform": "^3.0.0",
"jest": "^22.4.2"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/fixtures/"
]
}
}