-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
48 lines (48 loc) · 1.07 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
{
"name": "cpp-wasm-loader",
"description": "Webpack loader that transforms C/C++ source files into javascript bundles.",
"author": "Jakub Beránek, Scott Lott",
"license": "MIT",
"version": "0.9.0",
"keywords": [
"wasm",
"webpack",
"loader",
"webassembly",
"asmjs",
"memory",
"emscripten",
"c",
"c++"
],
"repository": {
"type": "git",
"url": "https://github.com/ClickSimply/cpp-wasm-loader.git"
},
"main": "src/cjs.js",
"scripts": {
"build": "tsc -p tsconfig.json && mv mem/index.js src/mem.js"
},
"dependencies": {
"bluebird": "^3.5.1",
"loader-utils": "^1.1.0",
"md5": "^2.2.1",
"rimraf": "^2.6.2",
"tmp": "^0.0.33"
},
"devDependencies": {
"typescript": "^2.9.1"
},
"files": [
"src"
],
"engines": {
"node": ">= 4.3 < 5.0.0 || >= 5.10"
},
"peerDependencies": {
"webpack": "^2.0.0 || ^3.0.0"
},
"browser": {
"fs": false
}
}