-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.47 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
{
"name": "footballcal",
"version": "0.0.1",
"description": "Football Cal – Providing football game details in calendars.",
"homepage": "https://footballcal.com",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/sportstimes/footballcal-11ty"
},
"authors": [
{
"name": "Trevor Morris",
"email": "[email protected]",
"url": "https://www.trovster.com"
}
],
"keywords": [
"11ty",
"eleventy",
"football",
"calendar"
],
"license": "ISC",
"engines": {
"node": ">=14"
},
"scripts": {
"clean": "rm -rf dist",
"11ty": "npx @11ty/eleventy $npm_config_pathprefix",
"css": "npx postcss ./src/_assets/css/site.css -o ./dist/css/site.css",
"start": "npm run 11ty -- --serve --quiet & npm run css -- --watch",
"prebuild": "npm run clean",
"build": "npm run 11ty",
"postbuild": "npm run css",
"lint:js": "npx standard",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:css": "npx stylelint 'src/**/*.css'",
"lint:css:fix": "npm run lint:css -- --fix",
"test": "echo \"Warning: No tests\" && exit 0"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"autoprefixer": "^10.4.19",
"dotenv": "^16.3.1",
"ics": "^3.7.6",
"postcss": "^8.4.38",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"cssnano": "^7.0.5",
"standard": "^17.1.0",
"stylelint": "^16.6.1",
"stylelint-config-standard": "^36.0.0"
}
}