-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 903 Bytes
/
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
{
"name": "ioncache.com",
"version": "1.1.0",
"description": "Personal website of Mark Jubenville, aka, ioncache.",
"devDependencies": {
"husky": ">=8.0.3",
"prettier": ">=2.8.3",
"pretty-quick": ">=3.1.3",
"sitemap-generator": "^8.5.1",
"stylelint-config-standard": ">=29.0.0",
"stylelint-order": ">=6.0.1",
"stylelint": ">=14.16.1",
"url-parse": ">=1.5.10"
},
"scripts": {
"format": "npx prettier -w ./app",
"lint": "npx stylelint ./app --config .stylelintrc.js",
"lint:fix": "npx stylelint ./app --fix --config .stylelintrc.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/ioncache/ioncache.com"
},
"author": "Mark Jubenville <[email protected]>",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}