|
1 | 1 | {
|
2 | 2 | "name": "@tc39/tc39.github.io",
|
| 3 | + "private": true, |
3 | 4 | "description": "Get involved in specifying JavaScript",
|
4 | 5 | "repository": {
|
5 | 6 | "type": "git",
|
6 | 7 | "url": "https://github.com/tc39/tc39.github.io.git"
|
7 | 8 | },
|
8 | 9 | "scripts": {
|
9 |
| - "lint": "npm run lint:js && npm run lint:scss && npm run lint:format", |
10 |
| - "lint:js": "eslint --ext=.js,.mjs .", |
11 |
| - "lint:scss": "stylelint _sass", |
12 |
| - "lint:format": "prettier --check . '!tc39-notes'", |
| 10 | + "prebuild": "npm run sass", |
| 11 | + "build": "eleventy", |
13 | 12 | "fix": "npm run fix:js && npm run fix:scss && npm run fix:format",
|
| 13 | + "fix:format": "npm run lint:format -- --write", |
14 | 14 | "fix:js": "npm run lint:js -- --fix",
|
15 | 15 | "fix:scss": "npm run lint:scss -- --fix",
|
16 |
| - "fix:format": "npm run lint:format -- --write", |
17 |
| - "test": "echo \"Error: no test specified\" && exit 1", |
| 16 | + "lint": "npm run lint:js && npm run lint:scss && npm run lint:format", |
| 17 | + "lint:format": "prettier --check . '!tc39-notes'", |
| 18 | + "lint:js": "eslint --ext=.js,.mjs .", |
| 19 | + "lint:scss": "stylelint _sass", |
18 | 20 | "sass": "sass --style=compressed _sass/style.scss assets/css/style.css",
|
19 | 21 | "sass:watch": "sass --style=compressed _sass/style.scss assets/css/style.css --watch",
|
20 |
| - "build": "npx @11ty/eleventy", |
21 |
| - "prebuild": "npm run sass", |
22 |
| - "start": "npx @11ty/eleventy --serve --watch" |
| 22 | + "start": "eleventy --serve --watch", |
| 23 | + "test": "echo \"Error: no test specified\" && exit 1" |
23 | 24 | },
|
24 | 25 | "devDependencies": {
|
25 | 26 | "@11ty/eleventy": "2.0.1",
|
|
37 | 38 | },
|
38 | 39 | "engines": {
|
39 | 40 | "node": ">=20"
|
40 |
| - }, |
41 |
| - "private": true |
| 41 | + } |
42 | 42 | }
|
0 commit comments