-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.36 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.36 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
46
47
48
49
50
{
"name": "formform",
"version": "0.15.0",
"description": "JS-library to calculate, visualize and simulate 4-valued FORMs of the FORM calculus introduced by Ralf Peyn in uFORM iFORM",
"keywords": [
"uFORM iFORM",
"FORM logic",
"undetermined form",
"eigenFORM",
"WELTFORM",
"uFORM",
"FORMWELT",
"laws of form",
"logic"
],
"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/formform"
},
"browserslist": [
"defaults",
"not IE 11",
"not IE_Mob 11"
],
"main": "dist/formform.js",
"unpkg": "dist/formform.min.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"lint": "eslint './src/**'"
},
"dependencies": {
"big-integer": "^1.6.48",
"formsandlines-utils": "^0.1.1"
},
"devDependencies": {
"eslint": "^7.29.0",
"eslint-plugin-compat": "^3.9.0",
"webpack": "^5.39.1",
"webpack-cli": "^4.7.2"
}
}