This repository has been archived by the owner on Dec 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 1.84 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
{
"name": "rust-wasm-webpack",
"version": "0.6.0",
"title": "rust-wasm-webpack",
"description": "A simple boilerplate to get WebAssembly (WASM) code generated by Rust and bundled by Webpack!",
"keywords": [
"rust",
"wasm",
"webassembly",
"webpack"
],
"homepage": "https://github.com/yamafaktory/rust-wasm-webpack",
"author": {
"name": "Davy Duperron",
"url": "https://github.com/yamafaktory"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yamafaktory/rust-wasm-webpack"
},
"engines": {
"npm": ">=5.0.0",
"node": ">=9.0.0"
},
"devDependencies": {
"babel-eslint": "10.0.3",
"eslint": "5.16.0",
"eslint-config-prettier": "4.3.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-standard": "4.0.1",
"husky": "1.3.1",
"lint-staged": "8.2.1",
"rust-native-wasm-loader": "0.8.1",
"snazzy": "8.0.0",
"standard": "12.0.1",
"wasm-loader": "1.3.0",
"webpack": "4.41.2",
"webpack-cli": "3.3.4",
"webpack-dev-server": "3.9.0"
},
"scripts": {
"build": "webpack",
"lint": "eslint --cache --ext .js .",
"prettier": "prettier --no-semi --single-quote --trailing-comma es5 --write",
"preversion": "git pull && yarn && yarn lint --quiet",
"postversion": "git push --tags origin HEAD",
"start": "webpack-dev-server",
"setup": "rustup default nightly && rustup update nightly && rustup target add wasm32-unknown-unknown --toolchain nightly && cargo install --force --git https://github.com/alexcrichton/wasm-gc"
},
"lint-staged": {
"*.{js}": [
"yarn prettier",
"yarn lint",
"git add"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"useTabs": false
}
}