forked from CodingTrain/Flappy-Bird-Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 940 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
36
37
38
39
{
"name": "flappy-bird-clone",
"version": "1.0.0",
"description": "The Coding Train's Flappy Bird Clone",
"main": "sketch.js",
"scripts": {
"lint": "eslint *.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodingTrain/Flappy-Bird-Clone.git"
},
"keywords": [
"education",
"codingtrain",
"flappy-bird",
"game",
"clone",
"javascript"
],
"author": "Daniel Shiffman",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodingTrain/Flappy-Bird-Clone/issues"
},
"homepage": "https://github.com/CodingTrain/Flappy-Bird-Clone",
"devDependencies": {
"eslint": "^4.18.2",
"eslint-config-p5js": "^1.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1"
},
"eslintIgnore": [
"libraries/*"
]
}