-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 868 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
30
31
32
33
{
"name": "snake-ts-demo",
"version": "1.0.0",
"description": "Typescript Snake game to learn step by step key concepts about TS",
"main": "index.html",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --p tsconfig.json",
"build:prod" : "tsc -p tsconfig.prod.json",
"start": "npx http-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agonsant/snake-ts-demo.git"
},
"keywords": [
"TypeScript",
"JavaScript",
"FrontEnd",
"Game",
"DesignPatterns",
"POO"
],
"author": "Alejandro Gonzalez Santiago & Carlos Martinez Casana",
"license": "MIT",
"bugs": {
"url": "https://github.com/agonsant/snake-ts-demo/issues"
},
"homepage": "https://github.com/agonsant/snake-ts-demo#readme",
"devDependencies": {
"typescript": "^3.8.3"
}
}