-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.35 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
55
{
"name": "duktape-vm",
"version": "0.1.4",
"description": "Javascript VM running in WebAssembly",
"main": "build/ducktape-vm.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ClickSimply/duktape-vm.git"
},
"scripts": {
"build": "webpack -p && webpack -p --env.asm=true && webpack -p --env.both=true && webpack -p --env.target=node && npm run typings",
"typings": "tsc --stripInternal -d --emitDeclarationOnly --moduleResolution \"node\" -t \"es5\" --rootDir \"./src\" --module \"commonjs\" --outDir \"./build\""
},
"typings": "build/index.d.ts",
"keywords": [
"vm",
"runInNewContext",
"virtual",
"machine",
"run",
"code",
"runner",
"source",
"exec",
"eval",
"context",
"utility",
"fast",
"lightweight",
"minimal",
"speed",
"ops",
"webassembly",
"asmjs",
"asm",
"duktape",
"jvm",
"sandbox"
],
"author": "Scott Lott <Scott@ClickSimply.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ClickSimply/duktape-vm/issues"
},
"homepage": "https://github.com/ClickSimply/duktape-vm#readme",
"devDependencies": {
"@types/node": "^10.7.1",
"cpp-wasm-loader": "^0.8.2",
"ts-loader": "^4.4.2",
"tslint": "^5.11.0",
"typescript": "^3.0.1",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0"
}
}