forked from tc39/tc39.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.25 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
{
"name": "tc39-web-draft",
"private": true,
"version": "0.0.0",
"description": "Draft for TC39 website",
"main": "index.js",
"scripts": {
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "eslint --ext=.js,.mjs .",
"format:js": "npm run lint:js -- --fix",
"lint:scss": "stylelint _sass",
"check:html": "bundle exec jekyll build && node _tasks/check-html.mjs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tc39/tc39.github.io.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tc39/tc39.github.io/issues"
},
"homepage": "https://tc39.es/",
"engines": {
"node": ">=14.8"
},
"devDependencies": {
"@babel/core": "7.12.3",
"@babel/eslint-parser": "7.12.1",
"@babel/plugin-syntax-top-level-await": "7.12.1",
"@babel/preset-env": "7.12.1",
"eslint": "7.12.0",
"eslint-config-prettier": "6.14.0",
"eslint-plugin-compat": "3.8.0",
"eslint-plugin-prettier": "3.1.4",
"prettier": "^1.17.1",
"stylelint": "^10.0.1",
"stylelint-config-prettier": "^5.2.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-order": "^3.0.0",
"vnu-jar": "20.6.30"
}
}