-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 919 Bytes
/
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
{
"name": "memorygame",
"version": "1.0.0",
"description": "Simple card game.",
"main": "index.js",
"bin": {
"memorygame": "bin.js"
},
"scripts": {
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gigafiga21/MemoryGame.git"
},
"author": "gigafiga21",
"license": "ISC",
"bugs": {
"url": "https://github.com/gigafiga21/MemoryGame/issues"
},
"homepage": "https://github.com/gigafiga21/MemoryGame#readme",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.1.1",
"mini-css-extract-plugin": "^0.9.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"css-loader": "^3.4.2",
"style-loader": "^1.1.3"
}
}