-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.22 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.22 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
{
"name": "@logigator/logigator-simulation",
"version": "1.2.0",
"description": "Multi-Threaded Simulator for Logic Circuits as Node.JS Native C++ or WebAssembly Module.",
"main": "index.js",
"homepage": "https://github.com/logigator/logigator-simulation#readme",
"bugs": {
"url": "https://github.com/logigator/logigator-simulation/issues"
},
"scripts": {
"build": "node-gyp build && npm run wasm-build",
"wasm-build": "run-script-os",
"wasm-build:win32": "webAssembly\\build_win32.bat",
"wasm-build:default": "bash webAssembly/build_unix.sh",
"wasm-install": "run-script-os",
"wasm-install:win32": "webAssembly\\install_win32.bat",
"wasm-install:default": "bash webAssembly/install_unix.sh",
"prepare": "node-gyp rebuild && npm run wasm-install",
"test": "node ./test.js"
},
"files": [
"src",
"webAssembly/!(emscripten)",
"binding.gyp",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/logigator/logigator-simulation.git"
},
"author": "Andreas Schloessl",
"license": "MIT",
"gypfile": true,
"devDependencies": {
"node-gyp": "^8.4.1"
},
"dependencies": {
"nan": "^2.15.0",
"run-script-os": "^1.1.6"
}
}