-
Notifications
You must be signed in to change notification settings - Fork 178
/
package.json
58 lines (58 loc) · 1.81 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
{
"license": "MIT",
"main": "dist/index.js",
"name": "babel-plugin-fbt",
"description": "The FBT Babel localization transform",
"//version": "Follow SemVer specs at https://semver.org/",
"version": "1.0.1",
"engines": {
"node": ">= 12.16.0"
},
"bin": {
"fbt-collect": "dist/bin/collectFbt.bin.js",
"fbt-manifest": "dist/bin/manifest.bin.js",
"fbt-translate": "dist/bin/translate.bin.js"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-catch-binding": "^7.2.0",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/plugin-syntax-flow": "^7.2.0",
"babel-plugin-transform-flow-enums": "^0.0.2",
"babel-preset-fbjs": "^3.1.2",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-once": "^2.1.1",
"gulp-rename": "^1.4.0"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/generator": "^7.0.0",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-flow-strip-types": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@babel/register": "^7.0.0",
"@babel/types": "^7.2.2",
"fb-babel-plugin-utils": "^0.13.0",
"flow-enums-runtime": "^0.0.4",
"glob": "^7.1.6",
"invariant": "^2.2.4",
"jest-docblock": "^26.0.0",
"nullthrows": "^1.1.1",
"yargs": "^15.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/facebook/fbt.git",
"directory": "packages/babel-plugin-fbt"
},
"scripts": {
"prepack": "gulp --series clean build",
"publish_to_npm_latest": "yarn publish . && git push --tags && git push",
"watch": "gulp watch"
},
"peerDependencies": {
"@fbtjs/default-collection-transform": "^1.0.0"
}
}