-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 940 Bytes
/
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
{
"name": "preact-bind-group",
"version": "2.0.3",
"description": "simple preact grouping onChange events",
"scripts": {
"build": "npm run build:react ; npm run build:preact",
"build:react": "rollup -c rollup.react.js",
"build:preact": "rollup -c rollup.preact.js"
},
"main": "dist/preact-bind-group.js",
"module": "dist/preact-bind-group.es.js",
"keywords": [
"preact",
"react",
"forms",
"events"
],
"author": "k1r0s",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-computed-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"preact": "^8.2.7",
"react": "^16.2.0",
"rollup": "^0.56.2",
"rollup-plugin-babel": "^3.0.2"
},
"peerDependencies": {
"preact": "*",
"react": "*"
}
}