-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 927 Bytes
/
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
{
"name": "clp-wasm",
"version": "0.0.19",
"description": "A CLP wrapper for WASM",
"author": "Darien Pardinas",
"license": "EPL",
"repository": {
"type": "git",
"url": "https://github.com/dpar39/clp-wasm.git"
},
"keywords": [
"LP",
"solver",
"linear programming",
"linear optimization"
],
"devDependencies": {
"@types/jest": "^25.2.1",
"jest": "^26.0.1"
},
"files": [
"clp-wasm.*"
],
"types": "clp-wasm.d.ts",
"scripts": {
"build-docker": "docker build . -t clp-wasm-builder",
"build-wasm": "docker run -u $(id -u):$(id -g) -v $PWD:/app clp-wasm-builder ./build.sh release wasm",
"build-bundle": "node bundle-with-wasm.js",
"build": "npm run build-docker && npm run build-wasm && node bundle-with-wasm.js",
"start": "jest --watchAll",
"test": "jest"
},
"dependencies": {},
"peerDependencies": {
"typescript": ">= 3.8.3"
}
}