-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.52 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.52 KB
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
62
63
64
65
66
67
68
69
70
{
"name": "font-library",
"version": "0.0.0",
"description": "An open source project to tag and organize Google Fonts.",
"scripts": {
"pretest": "eslint .",
"test": "jsonlint families.json -q && tape test/*.js | tap-spec"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^4.3.8",
"json-stringify-pretty-compact": "^3.0.0",
"jsonlint": "^1.6.3",
"lint-staged": "^10.5.4",
"node-fetch": "^2.6.2",
"prettier": "^2.4.0",
"scsslint": "0.0.3",
"tap-spec": "^5.0.0",
"tape": "^5.0.1"
},
"bin": {
"update-library": "bin/update.js"
},
"main": "index.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/katydecorah/font-library.git"
},
"author": "Katy DeCorah",
"license": "MIT",
"bugs": {
"url": "https://github.com/katydecorah/font-library/issues"
},
"homepage": "https://uvacoder.github.io/font-library/#!/",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"eslint",
"prettier --single-quote --write",
"git add"
],
"**/*.md": [
"prettier --write",
"git add"
],
"**/*.yml": [
"prettier --write",
"git add"
],
"**/*.scss": [
"scss-lint",
"prettier --write",
"git add"
],
"**/*.json": [
"prettier --print-width 600 --write",
"git add"
]
},
"dependencies": {}
}