-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1001 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-runtime-jsx-style-transform",
"version": "1.0.2",
"description": "Babel runtime support for jsx.",
"main": "dist/babel-runtime-jsx-style-transform.umd.js",
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c rollup.config.js",
"prepublish": "npm run build",
"test": "mocha ./test/index.js",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/Yurisa/babel-runtime-jsx-style-transform"
},
"keywords": [
"babel",
"runtime",
"jsx"
],
"author": "Yurisa",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"rollup": "^1.13.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-filesize": "^6.1.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-uglify": "^6.0.2"
},
"dependencies": {
"mocha": "^8.2.1"
}
}