-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.04 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
{
"name": "@bytecodealliance/preview2-shim",
"version": "0.17.2",
"description": "WASI Preview2 shim for JS environments",
"author": "Guy Bedford, Eduardo Rodrigues<16357187+eduardomourar@users.noreply.github.com>",
"type": "module",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"node": "./lib/nodejs/index.js",
"default": "./lib/browser/index.js"
},
"./*": {
"types": "./types/*.d.ts",
"node": "./lib/nodejs/*.js",
"default": "./lib/browser/*.js"
}
},
"scripts": {
"test": "node --expose-gc ../../node_modules/mocha/bin/mocha.js -u tdd test/test.js --timeout 30000"
},
"files": [
"types",
"lib"
],
"devDependencies": {
"mocha": "^10.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bytecodealliance/jco.git"
},
"license": "(Apache-2.0 WITH LLVM-exception)",
"bugs": {
"url": "https://github.com/bytecodealliance/jco/issues"
},
"homepage": "https://github.com/bytecodealliance/jco#readme"
}