-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
48 lines (48 loc) · 1.66 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
{
"name": "sustainers",
"version": "1.0.0",
"private": true,
"description": "The sustainoss.org source code",
"repository": {
"type": "git",
"url": "git+https://github.com/sustainers/sustainers.github.io.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/sustainers/sustainers.github.io/issues"
},
"homepage": "https://sustainoss.org/",
"scripts": {
"autoprefixer": "postcss \"_sass/**/*.scss\" --use autoprefixer --syntax postcss-scss --no-map --replace",
"build": "bundle exec jekyll build",
"fusv": "fusv _sass",
"stylelint": "stylelint \"**/*.{css,scss}\"",
"eslint": "eslint --report-unused-disable-directives --ext js,.mjs .",
"markdownlint": "markdownlint-cli2 \"**/*.md\" \"!**/node_modules/**\" \"!**/vendor/**\"",
"lint": "npm-run-all --parallel --continue-on-error eslint stylelint fusv markdownlint vnu",
"vnu": "node ./scripts/vnu-jar.mjs",
"test": "npm run lint",
"serve": "bundle exec jekyll serve",
"svgo:base": "svgo --config=_svgo.config.js --recursive",
"svgo": "npm-run-all --parallel \"svgo:base -- --folder=_includes\" \"svgo:base -- --folder=assets/img\"",
"create-blog": "node scripts/create-blog-post.mjs"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"find-unused-sass-variables": "^6.0.0",
"markdownlint-cli2": "^0.14.0",
"npm-run-all2": "^6.2.3",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"postcss-scss": "^4.0.9",
"stylelint": "^16.10.0",
"stylelint-config-twbs-bootstrap": "^15.1.0",
"svgo": "^3.3.2",
"vnu-jar": "23.4.11"
},
"engines": {
"node": ">=12"
}
}