forked from edwinm/game-of-life
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.35 KB
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
67
{
"name": "game-of-life",
"version": "1.0.0",
"description": "Game of Life",
"main": "gameoflife.js",
"scripts": {
"start": "serve dist",
"build": "rollup --config --sourcemap",
"buildall": "npm-run-all --parallel build generate",
"livereload": "rollup --config rollup-livereload.config.mjs --sourcemap --watch",
"watch": "npm-run-all --parallel start livereload",
"deploy": "npm run build && npm run brotli && npm run sw && ./deploy.sh",
"generate": "node src/lexgen/generate.js",
"wasm": "emcc -Os src/wasm/gol.c -o dist/gol.wasm -s EXPORTED_FUNCTIONS='[\"_gol\"]' -s INITIAL_MEMORY=4MB -s TOTAL_MEMORY=4MB -s TOTAL_STACK=1MB",
"sw": "node src/sw/generate.js",
"brotli": "npx brotli-cli compress dist/*.js dist/*.css",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edwinm/game-of-life.git"
},
"author": {
"name": "Edwin Martin",
"email": "edwin@bitstorm.org",
"url": "https://bitstorm.org/"
},
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/edwinm/game-of-life/issues"
},
"homepage": "https://github.com/edwinm/game-of-life#readme",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.0",
"@types/google.analytics": "0.0.42",
"brotli-cli": "^1.0.4",
"carbonium": "^1.2.1",
"cuprum": "^0.1.17",
"google-closure-compiler": "^20230228.0.0",
"html-entities": "^2.3.3",
"husky": "^8.0.3",
"mkdirp": "^2.1.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"pretty-quick": "^3.1.3",
"rollup": "^3.20.2",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-node-resolve": "^5.2.0",
"sanitize-filename": "^1.6.3",
"serve": "^14.2.0",
"string-strip-html": "^13.2.1",
"tslib": "^2.5.0",
"typescript": "^5.0.3",
"web-component-decorator": "^1.1.0",
"workbox-build": "^6.5.4"
},
"dependencies": {
"@rollup/plugin-terser": "^0.4.0",
"@types/offscreencanvas": "^2019.7.0",
"canvas": "^2.11.2",
"npm-check-updates": "^16.10.7"
}
}