forked from w3f/polkadot-wiki-old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "polkadot-wiki",
"version": "1.0.0",
"description": "The Polkadot wiki.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"spellcheck": "mdspell --en-us --ignore-numbers --ignore-acronyms --no-suggestions --report 'docs/polkadot/**/*.md' 'docs/*.md'",
"spellcheck:interactive": "mdspell --en-us --ignore-numbers --ignore-acronyms 'docs/polkadot/**/*.md' 'docs/*.md'",
"spellcheck:report": "mdspell --en-us --ignore-numbers --ignore-acronyms --no-suggestions --report 'docs/polkadot/**/*.md' 'docs/*.md'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w3f/Polkadot-wiki.git"
},
"keywords": [
"polkadot",
"wiki"
],
"author": "Web3 Foundation",
"license": "ISC",
"bugs": {
"url": "https://github.com/w3f/Polkadot-wiki/issues"
},
"homepage": "https://github.com/w3f/Polkadot-wiki#readme",
"dependencies": {
"markdown-spellcheck": "^1.3.1"
},
"devDependencies": {
"husky": "^1.3.1"
},
"husky": {
"hooks": {
"pre-commit": "./scripts/spell.sh"
}
}
}