-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 750 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 750 Bytes
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
{
"name": "jsx-runtime",
"version": "0.1.0",
"description": "A runtime version of JSX",
"main": "build/jsx-runtime.js",
"repository": {
"type": "git",
"url": "https://DAB0mB@github.com/DAB0mB/jsx-runtime.git"
},
"scripts": {
"build": "webpack --config webpack_config.js",
"prepublish": "npm run build"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-loader": "^7.1.5",
"babel-preset-es2017": "^6.24.1",
"eslint": "^5.1.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-react": "^7.11.1",
"react": "^16.5.2",
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0",
"webpack-node-externals": "^1.7.2"
},
"peerDependencies": {
"react": "*"
}
}