-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.09 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
{
"name": "@roqueform/ref-plugin",
"version": "5.0.0",
"description": "Associates Roqueform fields with DOM elements.",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"lib"
],
"scripts": {
"build": "rollup --config ../../rollup.config.js",
"clean": "rimraf lib",
"test": "jest --config ../../jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smikhalevski/roqueform.git"
},
"keywords": [
"roqueform",
"form",
"field",
"plugin",
"dom",
"ref"
],
"author": "Savva Mikhalevski <smikhalevski@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/smikhalevski/roqueform/issues"
},
"homepage": "https://github.com/smikhalevski/roqueform/tree/master/packages/ref-plugin#readme",
"peerDependencies": {
"roqueform": "^5.0.0"
}
}