-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 968 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
{
"name": "thirsty-plants",
"version": "1.0.0",
"description": "A game made in 24 hours for Develop Game Jam 2018",
"main": "game.js",
"scripts": {
"check-links": "markdown-link-check ./README.md",
"lint": "eslint --no-ignore .eslintrc.js game.js",
"start": "browser-sync . -w --no-notify --no-ui",
"test": "npm run lint && npm run check-links"
},
"repository": {
"type": "git",
"url": "git+https://github.com/polarstoat/thirsty-plants.git"
},
"keywords": [],
"author": "",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/polarstoat/thirsty-plants/issues"
},
"homepage": "https://github.com/polarstoat/thirsty-plants#readme",
"devDependencies": {
"browser-sync": "^2.24.5",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"markdown-link-check": "^3.6.2"
},
"dependencies": {
"phaser": "^3.11.0"
},
"private": true
}