This repository was archived by the owner on Nov 25, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.37 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
{
"name": "js-game-2048",
"version": "1.0.0",
"description": "JavaScript version of 2048 game, test to MiniClip. By Cod3rKane",
"main": "src/index.js",
"scripts": {
"build": "webpack",
"test": "mocha --require babel-polyfill --require babel-core/register",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cod3rkane/js-game-2048.git"
},
"keywords": [
"javascript",
"game",
"webGL",
"canvas"
],
"author": "cod3rkane",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cod3rkane/js-game-2048/issues"
},
"homepage": "https://github.com/cod3rkane/js-game-2048#readme",
"devDependencies": {
"@babel/preset-env": "^7.7.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"css-loader": "^3.2.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^3.2.0",
"mocha": "^6.2.2",
"node-sass": "^4.13.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"@babel/core": "^7.7.0",
"babel-polyfill": "^6.26.0"
}
}