forked from tilk/digitaljs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.18 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "digitaljs",
"version": "0.9.0",
"description": "Digital logic simulator",
"main": "./lib/circuit.js",
"files": [
"lib",
"dist",
"src"
],
"browser": "./src/index.mjs",
"exports": {
"node": {
"import": "./src/circuit.mjs",
"require": "./lib/circuit.js"
},
"browser": "./src/index.mjs",
"default": "./lib/circuit.js"
},
"scripts": {
"prepare": "npm run prod && npm run build-lib",
"dev": "webpack --mode development",
"prod": "webpack --mode production",
"watch": "webpack --mode development --watch",
"test": "jest",
"build-lib": "mkdir -p lib && babel src -d lib",
"gh-pages": "webpack --mode production && gh-pages -a -d dist"
},
"author": "Marek Materzok",
"license": "BSD-2-Clause",
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"acorn": "^6.4.2",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-add-import-extension": "^1.6.0",
"babel-plugin-transform-import-meta": "^2.0.0",
"clean-webpack-plugin": "^2.0.2",
"css-loader": "^6.2.0",
"expose-loader": "^3.0.0",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.0.6",
"style-loader": "^3.2.1",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"3vl": "^1.0.0",
"babel-polyfill": "^6.26.0",
"dagre": "^0.8.5",
"elkjs": "^0.7.1",
"fastpriorityqueue": "^0.6.4",
"graphlib": "^2.1.8",
"jointjs": "^3.4.0",
"jquery": "^3.6.0",
"jquery-ui": "^1.12.1",
"regenerator-runtime": "^0.13.9",
"resize-observer-polyfill": "^1.5.1",
"wavecanvas": "^1.0.0",
"web-worker": "^1.0.0"
},
"homepage": "https://github.com/tilk/digitaljs",
"repository": {
"type": "git",
"url": "https://github.com/tilk/digitaljs.git"
},
"jest": {
"testEnvironment": "jest-environment-node",
"verbose": true,
"transform": {
"^.+\\.m?jsx?$": "babel-jest"
},
"moduleDirectories": [
"node_modules",
"src"
],
"moduleFileExtensions": [
"js",
"mjs"
],
"testMatch": [
"**/*.test.mjs"
]
}
}