-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.72 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "whirljs",
"version": "0.3.0-alpha.11",
"description": "Event-based fully documented 2D browser game engine.",
"main": "./build/whirl.js",
"author": {
"name": "Matthew W.",
"url": "http://www.mwidd.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/MatthewWid/Whirl.git"
},
"homepage": "https://github.com/MatthewWid/Whirl/blob/master/README.md",
"bugs": {
"url": "https://github.com/MatthewWid/Whirl/issues"
},
"keywords": [
"whirl",
"2d",
"html5",
"canvas",
"game",
"javascript",
"game-engine"
],
"license": "MIT",
"files": [
"build/"
],
"scripts": {
"dev": "webpack --config ./webpack/webpack.config.js --env dev",
"build": "webpack --config ./webpack/webpack.config.js --env prod",
"doc": "jsdoc ./src/ -c ./.jsdoc",
"prettier:format": "prettier --write \"./src/**/*.js\" --config ./.prettierrc --ignore-path ./.prettierignore",
"prettier:check": "prettier --check \"./src/**/*.js\" --config ./.prettierrc --ignore-path ./.prettierignore",
"prepublishOnly": "npm run build"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"codemirror": "^5.50.2",
"css-loader": "^3.4.1",
"eslint": "^7.1.0",
"eslint-loader": "^4.0.2",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.6.3",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"prettier": "^1.19.1",
"raw-loader": "^4.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^1.1.2",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-fix-style-only-entries": "^0.4.0",
"webpack-merge": "^4.2.2"
}
}