-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 666 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 666 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
{
"name": "four",
"version": "0.1.0",
"description": "A game engine based on a 4x4 grid.",
"scripts": {
"eslint": "eslint .",
"eslint-fix": "eslint --fix .",
"test": "jest -i ./__test__/four.test.js"
},
"keywords": [],
"author": "Philip Norton <philipnorton42@gmail.com>",
"license": "MIT",
"devDependencies": {
"canvas": "^2.11.2",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2"
},
"dependencies": {
"jest-environment-jsdom": "^29.7.0"
}
}