forked from pactus-project/pactus.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
20 lines (20 loc) · 1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "pactus.org",
"version": "0.1.0",
"description": "Pactus Blockchain",
"repository": "https://github.com/pactus-project/pactus.org",
"license": "MIT",
"scripts": {
"htmlproofer:setup": "gem install html-proofer",
"htmlproofer": "htmlproofer --swap-urls 'http\\://localhost\\:4000:' --ignore-status-codes 999,429 --check_internal_hash false --enforce-https false --ignore-urls /cdn./,/discord.gg/,/t.me/,/twitter.com/,/github.com/,/ietf.org/ ./_site",
"prettier": "prettier --bracket-same-line true --html-whitespace-sensitivity ignore --end-of-line lf --print-width 120 --write ./website",
"lint:md:setup": "gem install mdl",
"lint:md": "mdl --style=.mdlrc.rb ./website",
"lint:yml:setup": "pip install --upgrade yamllint",
"lint:yml": "yamllint ./website",
"exif": "for i in $(find ./website -name *.png -o -name *.gif -o -name *.jpg -o -name *.jpeg); do echo \"Processing $i\"; exiftool -all= \"$i\"; done"
},
"optionalDependencies": {
"prettier": "^2.7.1"
}
}