-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
67 lines (67 loc) · 1.93 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
62
63
64
65
66
67
{
"name": "font-library",
"version": "0.0.0",
"description": "An open source project to tag Google Fonts.",
"scripts": {
"lint": "eslint . && stylelint \"**/*.css\" && prettier --check families.json",
"pretest": "npm run lint",
"test": "jest --coverage",
"prepare": "husky install",
"start": "ELEVENTY_ENV=development npx @11ty/eleventy --serve",
"update-library": "node .github/actions/update-library.mjs",
"build": "tsc -noEmit && ELEVENTY_ENV=production npx eleventy"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@actions/core": "^1.11.1",
"@open-wc/eslint-config": "^12.0.3",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-unicorn": "^52.0.0",
"eslint-plugin-wc": "^2.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"node-fetch": "^3.3.2",
"prettier": "^3.2.5",
"prettier-2": "npm:prettier@2",
"stylelint": "^16.3.1",
"stylelint-config-standard": "^36.0.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"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://github.com/katydecorah/font-library#readme",
"prettier": {
"overrides": [
{
"files": "families.json",
"options": {
"printWidth": 600
}
}
]
},
"lint-staged": {
"families.json": [
"prettier --write"
]
}
}