-
Notifications
You must be signed in to change notification settings - Fork 281
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.07 KB
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
39
40
41
42
43
44
45
{
"name": "DuckHunt-JS",
"version": "3.1.0",
"description": "Duckhunt implemented in JS",
"scripts": {
"gulp": "gulp",
"lint": "eslint src/**/*.js",
"start": "webpack-dev-server",
"build": "webpack",
"audio": "gulp audio",
"images": "gulp images",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/MattSurabian/DuckHunt-JS.git"
},
"keywords": [
"Duckhunt",
"Duckhunt-JS",
"HTML5"
],
"author": "Matt Surabian",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@eslint/js": "^9.39.3",
"async": "^3.2.6",
"babel-loader": "^10.0.0",
"bluebird": "^3.7.2",
"eslint": "^9.39.3",
"eslint-plugin-import": "^2.32.0",
"glob": "^13.0.6",
"globals": "^15.0.0",
"gsap": "^3.12.0",
"gulp": "^5.0.0",
"howler": "^2.2.4",
"lodash": "^4.17.23",
"pixi.js": "^8.0.0",
"webpack": "^5.105.3",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3"
}
}