-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.68 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
39
40
41
42
43
44
45
46
47
48
49
{
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@babel/register": "^7.10.5",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"file-loader": "^6.0.0",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^4.3.0",
"mocha": "^8.1.2",
"prettier": "2.0.5",
"prettier-webpack-plugin": "^1.2.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@jjy/canvas-sprite-animations": "^1.0.0",
"@jjy/input": "^1.0.0",
"mainloop.js": "^1.0.4"
},
"name": "bullet-hell-js",
"description": "A bullet hell shooter written in pure, native Javascript and minimal libraries.",
"version": "1.0.0",
"homepage": "https://autumnchiu.com/bullet-hell-js",
"main": "src/index.js",
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "webpack-dev-server --config webpack.config.js --mode development",
"build": "webpack --config webpack.config.js --mode production",
"test": "mocha \"src/**/*.test.js\" --require @babel/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jjayeon/draw-with-me-solo.git"
},
"author": "jjayeon",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/jjayeon/bullet-hell-js/issues"
},
"homepage": "https://github.com/jjayeon/bullet-hell-js#readme"
}