-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 989 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 989 Bytes
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
{
"name": "babel-plugin-rn-white-label",
"version": "2.0.0",
"description": "A babel plugin to filter file pickups",
"main": "plugin/index.js",
"scripts": {
"test": "mocha --require @babel/register",
"build": "babel test/src/code.js -d .bin --plugins ../../plugin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/csath/babel-plugin-rn-white-label.git"
},
"keywords": [
"react-native",
"whitelabel",
"rn-whitelabel",
"babel",
"plugin"
],
"author": "csath <chanakaathurugiriya@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/csath/babel-plugin-rn-white-label/issues"
},
"homepage": "https://github.com/csath/babel-plugin-rn-white-label#readme",
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/register": "^7.7.4",
"babel-cli": "^6.26.0",
"mocha": "^6.2.2"
},
"dependencies": {
"@babel/types": "^7.7.4"
}
}