-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
33 lines (33 loc) · 928 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
{
"name": "rust-native-wasm-loader",
"version": "0.8.1",
"description": "A webpack loader for Rust wasm libraries (without requiring emscripten)",
"main": "dist/index.js",
"repository": "https://github.com/dflemstr/rust-native-wasm-loader",
"author": "David Flemström <[email protected]>",
"license": "MIT",
"dependencies": {
"async-child-process": "^1.1.1",
"fs-extra": "^5.0.0",
"loader-utils": "^1.1.0",
"semver": "^5.5.0"
},
"devDependencies": {
"@types/node": "^9.4.6",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"jest": "^22.0.4",
"node-file-eval": "^1.0.0",
"text-encoding": "^0.6.4",
"ts-loader": "^3.5.0",
"typescript": "^2.7.2",
"wasm-dce": "^1.0.2",
"wasm-loader": "^1.1.0",
"webpack": "^3.10.0"
},
"scripts": {
"build": "babel src --out-dir dist",
"prepublish": "npm run build",
"test": "jest"
}
}