-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.05 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.05 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
46
47
48
49
50
51
{
"name": "react-web-component-injector",
"version": "1.1.0",
"description": "React Web Component Injector",
"author": "Jonathan Warning",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jwarning/react-web-component-injector"
},
"files": [
"dist",
"index.js",
"README.md"
],
"main": "dist/index.js",
"scripts": {
"build": "babel index.js src/**/* -d dist && webpack",
"prepublish": "npm run build"
},
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"webpack": "^3.1.0"
},
"peerDependencies": {
"react": ">=15.0.0"
},
"tags": [
"react",
"web",
"component",
"injector"
],
"keywords": [
"react",
"web",
"component",
"injector"
]
}