-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 926 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
{
"name": "sliding-tile-puzzle",
"version": "1.0.0",
"description": "A javascript and css grid game based on the old sliding tile puzzle games where the player has to re-arrange a jumbled picture by sliding tiles around a fixed 2d board.",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "parcel index.html",
"build": "SET NODE_ENV=development & parcel build index.html --out-dir docs --public-url ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Recidvst/sliding-tile-puzzle.git"
},
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/Recidvst/sliding-tile-puzzle/issues"
},
"homepage": "https://github.com/Recidvst/sliding-tile-puzzle#readme",
"devDependencies": {
"cssnano": "^4.1.10",
"sass": "^1.26.9"
},
"dependencies": {
"sweetalert": "^2.1.2"
}
}