-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.17 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
{
"name": "form-svg",
"version": "0.1.1",
"description": "formform module to visualize FORMs in SVG format",
"keywords": [
"formform",
"FORM logic",
"uFORM iFORM",
"laws of form"
],
"homepage": "https://formform.dev",
"author": {
"name": "Peter Hofmann",
"email": "peter.hofmann@formsandlines.eu",
"url": "https://formsandlines.eu"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/formsandlines/form-svg"
},
"browserslist": [
"defaults",
"not IE 11",
"not IE_Mob 11"
],
"main": "dist/form-svg.js",
"unpkg": "dist/form-svg.min.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack --config webpack.dev.js",
"build": "webpack --config webpack.prod.js"
},
"dependencies": {
"boxmodel-layout-for-d3": "^1.2.2",
"d3": "^5.16.0",
"formform": "^0.14.0"
},
"devDependencies": {
"eslint": "^7.29.0",
"eslint-plugin-compat": "^3.9.0",
"webpack": "^5.39.1",
"webpack-cli": "^4.7.2"
}
}