-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 959 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
{
"name": "react-ecmascript",
"version": "1.4.4",
"description": "A script which transform React and ReactDOM into native Ecmascript modules to be used in browsers which support Ecmascript modules and module loading",
"scripts": {
"build": "node ./src/index.js"
},
"repository": {
"type": "git",
"url": "[email protected]:wearespindle/react-ecmascript.git"
},
"keywords": [
"react",
"react-dom",
"ecmascript",
"module",
"import",
"browser",
"esm",
"mjs"
],
"author": "Joël Kuijten <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/wearespindle/react-ecmascript/issues"
},
"homepage": "https://github.com/wearespindle/react-ecmascript#readme",
"main": "./src/index.js",
"bin": "./src/index.js",
"dependencies": {
"acorn": "^5.7.3",
"react": "16.6.3",
"react-dom": "16.6.3",
"recast": "^0.15.5"
},
"devDependencies": {}
}