-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 906 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 906 Bytes
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
{
"name": "asteroids",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "parcel ./src/index.html --open --no-cache",
"clean": "rm -rf ./docs",
"build": "parcel build ./src/index.html --out-dir ./docs --public-url ./",
"check": "tsc --noEmit",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "npm run check && npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aaronbeall/asteroids.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aaronbeall/asteroids/issues"
},
"homepage": "https://github.com/aaronbeall/asteroids#readme",
"dependencies": {
"@types/stats.js": "^0.17.0",
"stats": "^1.0.0",
"stats.js": "^0.17.0"
},
"devDependencies": {
"parcel-bundler": "^1.12.3",
"typescript": "^5.9.3"
}
}