-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.55 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
59
60
61
{
"name": "jsx-native-events",
"version": "2.0.0",
"description": "Add native event handling to React's JSX to support custom event types",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"build": "nwb build-react-component",
"clean": "nwb clean-module && nwb clean-demo",
"prepublishOnly": "npm run build",
"start": "nwb serve-react-demo",
"test": "nwb test-react",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server",
"release": "standard-version",
"postrelease": "git push --follow-tags origin master; npm publish"
},
"dependencies": {},
"peerDependencies": {
"react": "16.x"
},
"devDependencies": {
"@testing-library/react": "^8.0.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-standard": "^4.0.0",
"nwb": "^0.25.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"standard-version": "^8.0.1"
},
"author": "Caleb D. Williams <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/calebdwilliams/jsx-native-events.git"
},
"keywords": [
"react-component",
"jsx",
"dom-events",
"events",
"dom",
"react",
"web components",
"webcomponents",
"custom elements",
"customElements",
"shadowDOM"
]
}