-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.04 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
59
60
61
62
63
64
65
66
{
"name": "babel-plugin-transform-react-createelement-to-jsx",
"version": "1.0.0",
"description": "Transforms React.createElement calls to JSX syntax",
"author": "Philipp A.",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/flying-sheep/babel-plugin-transform-react-createelement-to-jsx.git"
},
"keywords": [
"babel-plugin",
"react",
"jsx"
],
"bugs": {
"url": "https://github.com/flying-sheep/babel-plugin-transform-react-createelement-to-jsx/issues"
},
"homepage": "https://github.com/flying-sheep/babel-plugin-transform-react-createelement-to-jsx#readme",
"main": "lib/index.js",
"jsnext:main": "mod/index.js",
"files": [
"lib",
"mod"
],
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015": "^6.3.13",
"babel-preset-es2015-rollup": "^3.0.0",
"chai": "^3.4.1",
"mocha": "^2.3.4",
"decaffeinate": "^2.52.8",
"esformatter": "^0.10.0",
"esformatter-jsx": "^8.0.0",
"eslint": "^4.4.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-chai-friendly": "^0.4.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-jsx-control-statements": "^2.2.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-react": "^7.2.0",
"react-codemod": "git://github.com/reactjs/react-codemod.git#b27b1f20a762a1b60337e72f36ba368fa203ec42",
"yargs": "^8.0.2",
"prettier": "^1.4.4",
"tmp": "^0.0.31"
},
"dependencies": {
"babel-plugin-syntax-jsx": "^6.3.13",
"babel-runtime": "^6.23.0"
},
"scripts": {
"build": "npm run build:lib && npm run build:mod",
"build:lib": "babel src -d lib",
"build:mod": "BABEL_ENV=buildmodule babel src -d mod",
"watch": "babel src -d lib -w",
"prepublish": "npm run build",
"convert": "node lib/convert.js",
"test": "mocha --require babel-core/register test"
},
"engines": {
"node": ">=0.12"
}
}