forked from bitovi/react-to-web-component
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.79 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "react-to-can-webcomponent",
"version": "1.5.0",
"description": "Convert react components to native Web Components that work with CanJS.",
"main": "react-to-can-webcomponent",
"dependencies": {
"can-observation": "^4.2.0",
"can-observation-recorder": "^1.3.1",
"can-queues": "^1.3.1",
"can-reflect": "^1.18.0"
},
"devDependencies": {
"@webcomponents/custom-elements": "^1.2.4",
"can-observable-array": "^1.0.6",
"can-observable-object": "^1.0.1",
"can-stache": "^5.1.1",
"can-stache-bindings": "^5.0.4",
"preact": "^10.2.1",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"steal": "^2.2.4",
"steal-qunit": "^2.0.0",
"steal-tools": "^2.2.2",
"testee": "^0.9.1"
},
"scripts": {
"build": "node build.js",
"preversion": "npm test && npm run build",
"version": "git commit -am \"Update version number\" && git checkout -b release && git add -f dist/",
"postpublish": "git push --tags && git checkout main && git branch -D release && git push origin master",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"test": "testee --browsers firefox test.html"
},
"steal": {
"map": {
"preact/compat": "preact/compat/dist/compat",
"preact/hooks": "preact/hooks/dist/hooks"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/canjs/react-to-can-webcomponent.git"
},
"keywords": [
"React",
"Preact",
"WebComponents"
],
"author": "Bitovi",
"license": "MIT",
"bugs": {
"url": "https://github.com/canjs/react-to-can-webcomponent/issues"
},
"homepage": "https://github.com/canjs/react-to-can-webcomponent#readme"
}