-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.02 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.02 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "reactive-elements",
"version": "1.0.0-alpha.0",
"description": "use a React.js component as web component",
"main": "dist/reactive-elements.cjs.js",
"module": "dist/reactive-elements.esm.js",
"source": "src/reactive-elements.js",
"scripts": {
"test": "npm run build && karma start",
"prettier-check":
"prettier '{src,demo,test}/**/*' '*.md' '*.js' 'package.json' --list-different",
"prettier-write":
"prettier '{src,demo,test}/**/*' '*.md' '*.js' 'package.json' --write",
"build": "rollup -c",
"dev-example":
"yarn webpack-dev-server --config example/webpack.config.js --mode development",
"prepack": "npm run test"
},
"files": ["README.md", "CHANGELOG.md", "dist/", "example/"],
"homepage": "https://github.com/reactive-elements/reactive-elements",
"repository": {
"type": "git",
"url": "https://github.com/reactive-elements/reactive-elements.git"
},
"keywords": ["react", "web-components", "custom elements", "reactjs"],
"author": {
"name": "Denis Radin aka PixelsCommander",
"email": "[email protected]",
"url": "http://pixelscommander.com/"
},
"contributors": [
{
"name": "Addy Osmani",
"email": "[email protected]",
"url": "http://www.addyosmani.com"
},
{
"name": "Jakob Heuser",
"url": "http://www.felocity.com"
},
{
"name": "Gustavo Salomé Silva",
"email": "[email protected]",
"url": "https://github.com/gusnips"
},
{
"name": "Oliver Schmidt",
"url": "https://github.com/codejet"
},
{
"name": "Oleg Slobodskoi",
"email": "[email protected]",
"url": "https://kof.github.io"
},
{
"name": "James Broad",
"email": "[email protected]",
"url": "http://kulor.com"
},
{
"name": "Yuri Tkachenko",
"email": "[email protected]"
},
{
"name": "Sergey Shvager",
"url": "https://github.com/SergeyShvager"
},
{
"name": "Jack Franklin",
"email": "[email protected]"
},
{
"name": "Christian Murphy",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/reactive-elements/reactive-elements/issues",
"email": "[email protected]"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-loader": "^8.0.4",
"html-webpack-plugin": "^3.2.0",
"jasmine": "^3.0.0",
"jasmine-core": "^3.0.0",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.2",
"karma-sourcemap-loader": "^0.3.7",
"prettier": "^1.12.1",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"rollup": "^0.66.2",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-node-resolve": "^3.4.0",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
}
}