-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.15 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.15 KB
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
{
"name": "babel-plugin-inferno",
"version": "6.8.5",
"description": "Turn JSX into Inferno virtual DOM",
"repository": "https://github.com/trueadm/babel-plugin-inferno",
"license": "MIT",
"main": "lib/index.js",
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/preset-env": "^7.29.2",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-babel": "^7.0.0",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"chai": "^6.2.2",
"eslint": "^10.2.0",
"mocha": "^11.7.5",
"nyc": "^18.0.0",
"rollup": "^4.60.1"
},
"scripts": {
"build": "rollup -c",
"coverage": "nyc ./node_modules/.bin/_mocha tests.js",
"test": "node ./node_modules/mocha/bin/mocha tests.js",
"debug": "node --inspect-brk ./node_modules/mocha/bin/mocha tests.js",
"lint": "eslint lib",
"lintfix": "eslint lib --fix"
},
"keywords": [
"babel-plugin",
"babel",
"es2015",
"es2016",
"inferno",
"jsx"
],
"dependencies": {
"@babel/plugin-syntax-jsx": "^7",
"@babel/types": "^7"
},
"engines": {
"node": ">=18"
}
}