-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.14 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "wasm-backporter",
"version": "0.0.1",
"description": "Backport post-MVP WASM features to older instructions on client-side",
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"start": "ts-node lib/index.ts",
"build": "sh -c ./scripts/build.sh",
"eslint": "eslint lib/**/*.ts test/**/*.ts",
"prepublishOnly": "",
"tsc": "npx tsc --noEmit",
"test": "node --expose-gc --experimental-wasm-simd --wasm-simd-post-mvp ./node_modules/jest/bin/jest --coverage --logHeapUsage",
"testSimd": "node --experimental-wasm-simd --wasm-simd-post-mvp ./node_modules/jest/bin/jest simdArithmeticFloat32"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Daninet/wasm-backporter.git"
},
"keywords": [
"wasm",
"webassembly",
"backport",
"babel",
"post-mvp",
"simd",
"bulk",
"memory",
"transform",
"compatibility",
"compat",
"replace",
"transpile",
"recompile",
"fast",
"instructions",
"instruction",
"backward",
"compatible"
],
"bugs": {
"url": "https://github.com/Daninet/wasm-backporter/issues"
},
"homepage": "https://github.com/Daninet/wasm-backporter#readme",
"author": "Dani Biró <[email protected]> (https://danibiro.com)",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-typescript": "^5.0.2",
"@types/jest": "^26.0.7",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"cross-env": "^7.0.2",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.3",
"jest": "^26.1.0",
"rollup": "^2.23.0",
"ts-jest": "^26.1.3",
"ts-loader": "^8.0.1",
"ts-node": "^8.10.2",
"tslib": "^2.0.0",
"typescript": "^3.9.7",
"wabt": "1.0.19-nightly.20200821"
}
}