-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.1 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
{
"name": "cards",
"version": "1.0.0",
"description": "This repo is used to store cards separated by topic.",
"engines": {
"node": ">=10.0.0",
"yarn": ">=1.3.0"
},
"scripts": {
"test:json5": "node .scripts/validateJSON5.js",
"test:json5-format": "node .scripts/formatJSON5docs.js --validate",
"test:card-types": "node .scripts/validateCardTypes.js",
"test": "yarn run test:json5 && yarn run test:json5-format && yarn run test:card-types",
"format:json5": "node .scripts/formatJSON5docs.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/memory-cards/cards.git"
},
"keywords": [
"anki",
"anki decks",
"education"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/memory-cards/cards/issues"
},
"homepage": "https://github.com/memory-cards/cards#readme",
"dependencies": {
"card-types": "https://github.com/memory-cards/card-types#master",
"glob": "^7.1.3",
"husky": "^1.1.3",
"json5": "^2.1.0"
},
"husky": {
"pre-commit": "yarn run test:json5 && yarn run format:json5"
}
}