-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 988 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
38
39
{
"description": "Demo project for building WebAssembly projects using Rust.",
"license": "(Apache-2.0 OR MIT)",
"homepage": "https://github.com/woofwoofinc/webassembly",
"repository": {
"type": "git",
"url": "https://github.com/woofwoofinc/webassembly.git"
},
"scripts": {
"build": "webpack -p && eslint dist"
},
"devDependencies": {
"copy-webpack-plugin": "^4.4.1",
"eslint": "^4.17.0",
"eslint-config-strict": "^14.0.1",
"eslint-loader": "^1.9.0",
"literacy": "^1.1.1",
"literacy-loader": "^1.1.1",
"rust-native-wasm-loader": "^0.2.2",
"wasm-loader": "^1.1.0",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.1"
},
"eslintConfig": {
"extends": "strict",
"env": {
"es6": true,
"node": true,
"browser": true
},
"rules": {
"arrow-parens": "off",
"camelcase": "off",
"indent": "off",
"no-console": "off",
"no-multiple-empty-lines": "off"
}
}
}