-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 730 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 730 Bytes
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
{
"name": "pac-man",
"version": "2.1.1",
"description": "A pac-man clone inspired an Ania Kubow tutorial on Scrimba",
"source": "src/index.html",
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"start": "parcel",
"build": "parcel build",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"keywords": [
"pac-man",
"javascript",
"scrimba"
],
"author": "Stevie Gill",
"license": "ISC",
"devDependencies": {
"@parcel/transformer-sass": "^2.10.3",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.0",
"parcel": "^2.10.3"
}
}