-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.05 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.05 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
{
"name": "emsmem",
"version": "1.0.0",
"description": "Memory management examples in C++ WebAssembly",
"private": true,
"homepage": "https://github.com/react5com/emsmem#readme",
"bugs": {
"url": "https://github.com/react5com/emsmem/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react5com/emsmem.git"
},
"license": "MIT",
"author": "Alexander Fedorenko",
"main": "index.js",
"workspaces":[
"packages/native",
"packages/client"
],
"scripts": {
"build:native": "npm --workspace=@emsmem/native run build",
"build:client": "npm --workspace=@emsmem/client run build",
"build": "npm run build:native && npm run build:client",
"test:native": "npm --workspace=@emsmem/native run test",
"test:client": "npm --workspace=@emsmem/client run test",
"test": "npm run test:native && npm run test:client",
"dev:client": "npm --workspace=@emsmem/client run dev",
"dev:native": "npm --workspace=@emsmem/native run dev",
"dev": "npm run dev:native && npm run dev:client"
}
}