forked from mhelgeson/js13k-2024-aud13nd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.9 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
67
68
69
{
"name": "js13k-2024-aud13nd",
"version": "1.0.0",
"description": "Small javascript game",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://mhelgeson@github.com/mhelgeson/js13k-2024-aud13nd.git"
},
"keywords": [
"js13k"
],
"author": "mhelgeson",
"license": "MIT",
"homepage": "https://github.com/mhelgeson/js13k-2024-aud13nd#readme",
"jest": {
"verbose": true,
"testEnvironment": "jsdom"
},
"type": "module",
"config": {
"port": 9013
},
"watch": {
"build": {
"patterns": [
"./src/**",
"./demo/**"
],
"extensions": "js,css,html"
}
},
"scripts": {
"build": "mkdir -p dist && node ./tasks/embed > dist/index.html",
"rollup": "rollup -c -i",
"postcss": "postcss",
"clean": "rm -rf dist",
"dist": "run-s clean build zip stats",
"pretty": "prettier -w '**/*.{js,md}'",
"server": "http-server -p $npm_package_config_port ./dist",
"start": "run-p watch server",
"stats": "wc -c dist/$npm_package_name.zip | awk '{print $1, \"bytes (13312 limit)\"}'",
"watch": "npm-watch",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --coverage",
"test:cover": "npm run test -- --collectCoverageFrom='src/*/!(_*)**'",
"zip": "zip -j dist/$npm_package_name.zip dist/index.html"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/pluginutils": "^5.1.0",
"cssnano": "^7.0.5",
"debug": "^4.3.6",
"html-minifier": "^4.0.0",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mitt": "^3.0.1",
"mkpath": "^1.0.0",
"node-fetch": "^3.3.2",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.13.0",
"postcss": "^8.4.41",
"postcss-cli": "^11.0.0",
"prettier": "^3.3.3",
"rollup": "^4.20.0",
"uuid-v4": "^0.1.0"
}
}