-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 879 Bytes
/
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
{
"name": "wat-tag",
"version": "1.1.0",
"description": "A tag function for compiling inline WebAssembly written in the WAT text format",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --verbose"
},
"keywords": [
"WebAssembly",
"wasm",
"wabt",
"wat",
"wast",
"tagged-template-literal"
],
"author": "Rene Hangstrup Møller <[email protected]> (http://giddyplanet.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rhmoller/wat-tag.git"
},
"dependencies": {
"wabt": "^1.0.10"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.11.0",
"@types/webassembly-js-api": "0.0.2",
"jest": "^24.3.1",
"prettier": "^1.16.4",
"ts-jest": "^24.0.0",
"typescript": "^3.3.3333"
}
}