-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 913 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
34
35
36
37
{
"name": "fire-n-ice",
"version": "1.0.0",
"description": "A remake of a NES game with the same name: Fire 'n Ice",
"main": "index.html",
"scripts": {
"start": "npx webpack --config webpack.dev.config.js",
"build": "npx webpack --config webpack.prod.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eugenioenko/fire-n-ice.git"
},
"keywords": [
"nes",
"game",
"fire",
"ice",
"javascript"
],
"author": "eugenioenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/eugenioenko/fire-n-ice/issues"
},
"homepage": "https://github.com/eugenioenko/fire-n-ice#readme",
"devDependencies": {
"eslint": "^8.56.0",
"eslint-loader": "^4.0.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"natives": "^1.1.6"
}
}