-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.07 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
{
"name": "stelline",
"version": "1.0.0",
"description": "A simple demo using CanvasRenderingContext2D",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open --env=development",
"build": "npm run lint && webpack --config webpack.config.js --env=production",
"deploy": "./deploy.sh",
"lint": "node_modules/.bin/eslint src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alessandrodolci/stelline.git"
},
"keywords": [
"canvas",
"CanvasRenderingContext2D",
"2D",
"game",
"demo",
"space",
"stars"
],
"author": "Alessandro Dolci",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/alessandrodolci/stelline/issues"
},
"homepage": "https://github.com/alessandrodolci/stelline#readme",
"devDependencies": {
"eslint": "^8.8.0",
"html-webpack-plugin": "^5.5.0",
"webpack": "^5.94.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}