-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "webasmjs",
"version": "0.0.3",
"description": "Javascript wasm emitter",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"test:cover": "node ./node_modules/jest/bin/jest.js --collect-coverage",
"build": "babel src --out-dir lib"
},
"bugs": {
"url": "https://github.com/DevNamedZed/webasmjs/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/DevNamedZed/webasmjs#readme",
"author": {
"name": "",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DevNamedZed/webasmjs"
},
"keywords": [
"webasm",
"wasm",
"emit",
"codegen"
],
"dependencies": {
"big-integer": "^1.6.43",
"text-encoding": "^0.7.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"jest": "^24.5.0"
}
}