forked from WebDevSimplified/js-pong
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 766 Bytes
/
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
{
"name": "js-pong",
"version": "1.0.0",
"description": "Retro Pong game forked from WebDevSimplified/js-pong",
"scripts": {
"start": "parcel src/index.html",
"build": "parcel build src/index.html --public-url ./",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheRegge/js-pong.git"
},
"author": "Regis Zaleman",
"license": "ISC",
"bugs": {
"url": "https://github.com/TheRegge/js-pong/issues"
},
"homepage": "https://github.com/TheRegge/js-pong#readme",
"devDependencies": {
"gh-pages": "^3.2.3",
"parcel": "^2.0.1",
"parcel-plugin-clean-easy": "^1.0.2"
},
"parcelCleanPaths": [
"dist"
]
}