forked from wasmerio/wasmer-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.3 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
{
"name": "@wasmer/cli",
"description": "The CLI for executing Wasmer-JS",
"keywords": [
"cli"
],
"version": "0.10.2",
"author": "Wasmer Engineering Team <[email protected]>",
"license": "MIT",
"repository": "wasmerio/wasmer-js",
"homepage": "https://github.com/wasmerio/wasmer-js/tree/master/packages/cli",
"bugs": {
"url": "https://github.com/wasmerio/wasmer-js/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=8.0.0"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"wasmer-js": "./bin/wasmer-js"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"README.md"
],
"scripts": {
"start": "npm run build && node bin/wasmer-js",
"posttest": "tslint -p test -t stylish",
"build": "rm -rf lib && tsc -b",
"prepack": "npm run build",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\""
},
"dependencies": {
"@wasmer/wasi": "file:../wasi",
"@wasmer/wasm-transformer": "file:../wasm-transformer",
"blake3": "^2.1.1",
"minimist": "^1.2.0",
"pkginfo": "^0.4.1",
"tslib": "^1.10.0",
"typescript": "^3.6.4"
},
"devDependencies": {
"@types/minimist": "^1.2.0",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"tslint": "^6.0.0"
}
}