-
Notifications
You must be signed in to change notification settings - Fork 539
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.53 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"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": {
"@pixi/graphics": "^7.4.3",
"@pixi/sprite-animated": "^7.4.3",
"@pixi/text": "^7.4.3",
"audiosprite": "^0.6.0",
"babel-core": "^6.26.3",
"babel-loader": "^10.0.0",
"babel-preset-es2015": "^6.22.0",
"bluebird": "^3.7.2",
"eslint": "^4.18.2",
"eslint-plugin-import": "^2.20.2",
"exports-loader": "^0.6.3",
"file-loader": "^0.10.0",
"glob": "^7.1.6",
"gsap": "^1.20.6",
"gulp": "^4.0.2",
"gulp-connect": "^5.7.0",
"gulp-shell": "^0.8.0",
"hard-source-webpack-plugin": "^0.12.0",
"howler": "^2.1.3",
"json-loader": "^0.5.4",
"lodash": "^4.17.21",
"node-object-hash": "^1.4.2",
"pixi.js": "^8.11.0",
"script-loader": "^0.7.2",
"tween.js": "^16.6.0",
"webpack": "^5.100.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"dependencies": {
"@babel/preset-env": "^7.28.0",
"copy-webpack-plugin": "^13.0.0"
},
"engines": {
"node": "> 20.0.0"
}
}