-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 919 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
{
"name": "wasm-tutorial",
"version": "1.0.0",
"description": "WASM tutorial for Rust",
"main": "web\\index.js",
"directories": {
"test": "tests"
},
"scripts": {
"build:wasm": "wasm-pack build",
"build": "wasm-pack build && webpack --config webpack.config.js",
"build:prod": "wasm-pack build && webpack --config webpack.config.js --production",
"start": "wasm-pack build && webpack-dev-server",
"test": "wasm-pack test --firefox --headless"
},
"author": "Vasily Kazantsev <[email protected]>",
"license": "ISC",
"devDependencies": {
"webpack": "^4.16.3",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"copy-webpack-plugin": "^4.5.2"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"bracketSpacing": true,
"useTabs": false
}
}