-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
38 lines (38 loc) · 971 Bytes
/
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
{
"name": "babel-plugin-jsx-display-if",
"version": "3.0.0",
"description": "babel plugin to add conditional display ala ng-if to jsx",
"main": "dist/index.js",
"scripts": {
"test": "node_modules/.bin/mocha --compilers js:babel-core/register --reporter spec",
"build": "node_modules/.bin/babel -d dist index.js"
},
"keywords": [
"babel",
"plugin",
"jsx",
"react",
"ng-if",
"display-if",
"conditional",
"react-component"
],
"author": "Craftsy and Sympoz Inc.",
"contributors": [
"Don Abrams <don.abrams@craftsy.com>",
"Bryan Ross <bryan@rossipedia.com>"
],
"license": "MIT",
"repository": "craftsy/babel-plugin-jsx-display-if",
"dependencies": {
"babel-core": "^6.4.0"
},
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-plugin-transform-react-jsx": "^6.4.0",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.3.0",
"js-beautify": "^1.5.10",
"mocha": "^2.3.3"
}
}