forked from torch2424/wasm-by-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": [
"WebAssembly",
"Wasm",
"Examples",
"Example",
"Documentation",
"Demo",
"Learning",
"Tutorial"
],
"author": "Aaron Turner",
"license": "Creative Commons 4.0 Attribution",
"bugs": {
"url": "https://github.com/torch2424/wasm-by-example/issues"
},
"homepage": "https://github.com/torch2424/wasm-by-example#readme",
"devDependencies": {
"clean-css": "^4.2.1",
"cpy": "^6.0.0",
"get-title-markdown": "^2.0.1",
"highlight.js": "^10.4.1",
"husky": "^2.3.0",
"marked": "^0.8.0",
"mkdirp": "^0.5.1",
"mustache": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "1.17.1",
"pretty-quick": "^1.11.0",
"recursive-copy": "^2.0.10",
"recursive-readdir": "^2.2.2",
"serve": "^11.3.0",
"terser": "^4.0.0",
"watch": "^0.13.0",
"workbox-build": "^5.1.2"
},
"dependencies": {
"normalize.css": "^8.0.1",
"sakura.css": "^1.0.0"
}
}