forked from infernojs/babel-plugin-inferno
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 809 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
{
"name": "babel-plugin-inferno",
"version": "1.0.0-alpha3",
"description": "Turn JSX into Inferno VTemplates",
"repository": "https://github.com/trueadm/babel-plugin-inferno",
"license": "MPL-2.0",
"main": "lib/index.js",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-helper-replace-supers": "^6.14.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.13.2",
"eslint": "^3.3.0",
"mocha": "^3.0.2"
},
"scripts": {
"test": "mocha --compilers js:babel/register",
"lint": "eslint lib"
},
"keywords": [
"babel-plugin",
"babel",
"es2015",
"es2016",
"inferno",
"jsx"
],
"dependencies": {
"babel-plugin-syntax-jsx": "^6.13.0"
}
}