-
Notifications
You must be signed in to change notification settings - Fork 121
/
package.json
65 lines (65 loc) · 1.88 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
{
"name": "wasm-by-example",
"version": "0.2.0",
"description": "A website of examples in how to do common things in WebAssembly",
"main": "index.js",
"directories": {
"example": "examples"
},
"scripts": {
"dev": "npm-run-all build --parallel serve watch",
"build": "node build-system/build.js",
"serve": "serve ./dist -l 8080",
"watch": "watch 'npm run build' ./examples ./shell ./build-system ./demo-util --interval=1",
"lint": "prettier --write build-system/**/*.js shell/**/*.css shell/**/*.html examples/**/*.md examples/**/*.js examples/**/*.html examples/**/*.ts",
"lint:ci": "prettier --list-different build-system/**/*.js shell/**/*.css shell/**/*.html examples/**/*.md examples/**/*.js examples/**/*.html examples/**/*.ts"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/torch2424/wasm-by-example.git"
},
"keywords": [