Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
patorjk
GitHub Repository: patorjk/JavaScript-Snake
Path: blob/main/package.json
160 views
1
{
2
"name": "javascript-snake",
3
"version": "1.0.0",
4
"description": "JavaScript Snake<br/> By Patrick Gillespie<br/> License: MIT<br/> http://patorjk.com/games/snake",
5
"scripts": {
6
"start": "parcel src/index.html --open",
7
"build": "parcel build src/index.html",
8
"test": "echo \"Error: no test specified\" && exit 1"
9
},
10
"repository": {
11
"type": "git",
12
"url": "git+https://github.com/patorjk/JavaScript-Snake.git"
13
},
14
"author": "",
15
"license": "MIT",
16
"bugs": {
17
"url": "https://github.com/patorjk/JavaScript-Snake/issues"
18
},
19
"homepage": "https://github.com/patorjk/JavaScript-Snake#readme",
20
"devDependencies": {
21
"parcel": "^2.13.3",
22
"parcel-reporter-static-files-copy": "^1.5.3"
23
},
24
"staticFiles": {
25
"staticPath": "src/css",
26
"staticOutPath": "css"
27
}
28
}
29
30