forked from esmbly/esmbly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.12 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
{
"name": "@esmbly/transformer-flow",
"version": "0.0.5",
"description": "An Esmbly transformer that transforms Flow files to TypeScript",
"author": "Olle Lauri Boström <[email protected]> (https://github.com/ollelauribostrom)",
"homepage": "https://github.com/esmbly/esmbly",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"browser": "dist/index.bundle.js",
"keywords": [
"esmbly",
"flow",
"typescript",
"transform",
"transformer"
],
"repository": {
"type": "git",
"url": "git+https://github.com/esmbly/esmbly.git"
},
"bugs": {
"url": "https://github.com/esmbly/esmbly/issues"
},
"scripts": {
"build": "tsc",
"build-browser": "webpack --mode production",
"build-watch": "tsc -w"
},
"dependencies": {
"@babel/traverse": "^7.3.4",
"@babel/types": "^7.3.4",
"@esmbly/printer": "^0.0.5",
"@esmbly/types": "^0.0.5"
},
"devDependencies": {
"@esmbly/core": "^0.0.5"
},
"peerDependencies": {
"@esmbly/core": "^0.0.1"
},
"engines": {
"node": ">= 8"
},
"publishConfig": {
"access": "public"
}
}