-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.54 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "card-types",
"version": "1.0.0",
"description": "Structure of a repo:",
"main": "index.js",
"scripts": {
"lint:eslint": "eslint --quiet .",
"lint:json5": "json5 -v ./**/*.json5",
"lint:md": "prettier --list-different ./**/*.md",
"lint:js": "prettier --list-different ./**/*.{json,json5}",
"test:card-types": "node scripts/testCardTypes.js",
"test": "yarn run lint:md && yarn run lint:js && yarn run lint:eslint && yarn run lint:json5 && yarn run test:card-types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/memory-cards/card-types.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/memory-cards/card-types/issues"
},
"lint-staged": {
"*.md": [
"prettier --insert-pragma --write",
"git add"
],
"*.js": [
"prettier --write",
"eslint --fix --quiet",
"git add"
],
"*.{json,json5}": [
"prettier --write",
"json5 -v",
"git add"
]
},
"homepage": "https://github.com/memory-cards/card-types#readme",
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.1.4",
"lint-staged": "^8.0.5",
"prettier": "^1.15.2"
},
"dependencies": {
"anki-apkg-export": "^4.0.2",
"json5": "^2.1.0",
"jsonschema": "^1.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}