-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.3 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
68
69
70
71
72
73
74
75
{
"name": "ns-lunch-formatter",
"version": "1.0.3",
"description": "This project helps schools convert CSV reports with student names and meals into a consolidated list by meals and classes. The tool can export the consolidated data to PDF format.",
"main": "index.html",
"scripts": {
"test": "jest --coverage",
"lint": "eslint .",
"lint:check": "eslint .",
"format": "prettier --write .",
"lint:fix": "eslint --fix .",
"prepare": "husky",
"prettier:check": "prettier --check .",
"format:check": "prettier --check .",
"stylelint:fix": "stylelint '**/*.css' --fix",
"stylelint": "stylelint '**/*.css'",
"stylelint:check": "stylelint '**/*.css'",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"changelog": "standard-version --release-as patch",
"commitlint": "commitlint --edit"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Shereef/NSLunchFormatter.git"
},
"author": "Shereef Marzouk",
"license": "MIT",
"bugs": {
"url": "https://github.com/Shereef/NSLunchFormatter/issues"
},
"homepage": "https://github.com/Shereef/NSLunchFormatter#readme",
"type": "module",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"standard-version": "^9.5.0",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1"
},
"jest": {
"testEnvironment": "jsdom"
},
"lint-staged": {
"*.js": [
"eslint",
"prettier"
],
"*.css": [
"stylelint",
"prettier"
],
"*.json": [
"prettier"
]
},
"eslintIgnore": [
"coverage/"
],
"prettierIgnore": [
"coverage/"
],
"stylelintIgnore": [
"coverage/"
]
}