-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.52 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": "controllio",
"description": "Web app for experimenting with control systems",
"version": "0.6.0",
"license": "MIT",
"author": {
"name": "Ioannis Stefanis"
},
"repository": {
"type": "git",
"url": "https://github.com/istefanis/controllio.git"
},
"homepage": "https://github.com/istefanis/controllio#readme",
"bugs": {
"url": "https://github.com/istefanis/controllio/issues"
},
"keywords": [
"controller",
"dynamical-systems",
"control-systems",
"control-engineering",
"laplace-transform",
"frequency-domain",
"transfer-functions",
"frequency-analysis",
"pid-controller",
"bode-plot",
"frequency-response",
"control-design",
"nyquist",
"es2022"
],
"type": "module",
"scripts": {
"start": "parcel index.html --no-cache",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --verbose --collectCoverage",
"build": "parcel build index.html --no-cache"
},
"dependencies": {
"bootstrap-icons": "^1.11.3",
"function-plot": "^1.24.0"
},
"devDependencies": {
"buffer": "^6.0.3",
"canvas": "^2.11.2",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"parcel": "^2.11.0",
"resize-observer-polyfill": "^1.5.1"
},
"jest": {
"testEnvironment": "jsdom",
"setupFiles": [
"<rootDir>/test/jest/setup/jestSetupFile.js"
],
"setupFilesAfterEnv": [
"<rootDir>/test/jest/setup/jestSetupFileAfterEnv.js"
]
}
}