forked from bvibber/emsdk-npm
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 790 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 790 Bytes
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": "emscripten-sdk-npm",
"version": "0.3.0",
"description": "Download the Emscripten SDK into your system and access its commands via Node.js.",
"main": "src/index.js",
"scripts": {
"test": "mocha",
"postinstall": "node src/postinstall.js"
},
"bin": {
"emsdk": "src/emsdk.js",
"emsdk-checkout": "src/emsdk-checkout.js",
"emsdk-pull": "src/emsdk-pull.js",
"emsdk-run": "src/emsdk-run.js"
},
"repository": {
"type": "git",
"url": "https://github.com/devappd/emsdk-npm"
},
"keywords": [
"emscripten", "emsdk", "webassembly", "wasm"
],
"author": "devappd",
"license": "MIT",
"dependencies": {
"@zkochan/npm-conf": "^2.0.1",
"cross-spawn-promise": "^0.10.2"
},
"devDependencies": {
"mocha": "^8.2.1"
}
}