-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.05 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.05 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
{
"author": "Daniel Franklin <git@danielfranklin.id.au>",
"bugs": {
"url": "https://github.com/dfranklinau/slides.css/issues/"
},
"description": "A CSS framework for creating PDF presentations.",
"devDependencies": {
"@eslint/js": "9.35.0",
"eslint-config-prettier": "10.1.8",
"globals": "16.4.0",
"prettier": "3.6.2",
"stylelint": "16.24.0",
"stylelint-config-dfranklinau": "github:dfranklinau/stylelint-config-dfranklinau#v2.0.0"
},
"engines": {
"node": ">=24.2.0 <25.0.0"
},
"homepage": "https://github.com/dfranklinau/slides.css/",
"license": "ISC",
"name": "slides.css",
"private": "true",
"repository": {
"type": "git",
"url": "https://github.com/dfranklinau/slides.css/"
},
"scripts": {
"fix": "npm run fix:prettier",
"fix:prettier": "prettier ./src/*.{css,js} --write",
"lint": "npm run lint:eslint & npm run lint:stylelint",
"lint:eslint": "eslint ./src/*.js",
"lint:stylelint": "stylelint ./src/*.css",
"start": "npm run lint && npm run fix"
},
"version": "0.3.1"
}