forked from bitboxer/jsx-no-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 920 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
{
"name": "jsx-standalone",
"version": "2.1.3",
"description": "Use JSX without React",
"repository": "https://github.com/jaredsartin/jsx-standalone",
"author": "Jared Sartin <[email protected]>",
"contributors": [
"Bodo Tasche <[email protected]>",
"Matteo Barison <[email protected]>",
"Terry Kerr <[email protected]>"
],
"license": "MPL-2.0",
"private": false,
"main": "dist/main.iife.js",
"module": "dist/module.es6.js",
"scripts": {
"build": "rollup -c --environment INCLUDE_DEPS,BUILD:production",
"test": "yarn run jest",
"lint": "eslint src/module.js"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.14.5",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"babel-jest": "^27.0.1",
"eslint": "^8.1.0",
"jest": "^26.6.3",
"rollup": "^2.23.0"
}
}