-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.48 KB
/
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
40
41
42
43
44
45
46
47
48
{
"name": "chip-8-database",
"version": "0.0.1",
"description": "A database of CHIP-8 game metadata",
"scripts": {
"start": "npm run generate-hashes-file && npm run format",
"update": "npm run update-chip8-archive && npm run generate-hashes-file && npm run check-formatting && npm run test",
"test": "npm run validate-schema && npm run check-formatting",
"validate-schema": "node ./scripts/validate.js",
"check-formatting": "prettier --check .",
"format": "prettier --write .",
"hash": "node ./scripts/hash.js",
"update-chip8-archive": "node ./scripts/update-chip8-archive.js",
"generate-hashes-file": "node ./scripts/generate-hashes-file.js",
"index-directory": "node ./scripts/indexing.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chip-8/chip-8-database.git"
},
"contributors": [
{
"name": "Tobias V. Langhoff",
"email": "[email protected]",
"url": "http://tobiasvl.github.io/"
},
{
"name": "Timendus",
"email": "[email protected]",
"url": "https://github.com/Timendus"
},
{
"name": "Estus",
"email": "[email protected]",
"url": "https://github.com/Estus-Dev"
}
],
"bugs": {
"url": "https://github.com/chip-8/chip-8-database/issues"
},
"homepage": "https://github.com/chip-8/chip-8-database#readme",
"devDependencies": {
"colors": "^1.4.0",
"css-color-names": "^1.0.1",
"jsonschema": "^1.4.1",
"prettier": "^2.8.8"
}
}