forked from esmbly/esmbly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
{
"name": "@esmbly/transformer-wasm",
"version": "0.0.5",
"description": "An Esmbly transformer that transforms TypeScript files to WebAssembly, Wat, Asm.js and AssemblyScript",
"author": "Olle Lauri Boström <[email protected]> (https://github.com/ollelauribostrom)",
"homepage": "https://github.com/esmbly/esmbly",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"browser": "dist/index.bundle.js",
"keywords": [
"esmbly",
"typescript",
"webassembly",
"wat",
"asm.js",
"assemblyscript",
"transform",
"transformer"
],
"repository": {
"type": "git",
"url": "git+https://github.com/esmbly/esmbly.git"
},
"bugs": {
"url": "https://github.com/esmbly/esmbly/issues"
},
"scripts": {
"build": "tsc",
"build-browser": "webpack --mode production",
"build-watch": "tsc -w"
},
"dependencies": {
"@babel/traverse": "^7.4.3",
"@babel/types": "^7.4.0",
"@esmbly/printer": "^0.0.5",
"@esmbly/types": "^0.0.5",
"assemblyscript": "git://github.com/AssemblyScript/assemblyscript.git"
},
"devDependencies": {
"@esmbly/core": "^0.0.5"
},
"peerDependencies": {
"@esmbly/core": "^0.0.1"
},
"engines": {
"node": ">= 8"
},
"publishConfig": {
"access": "public"
}
}