-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
36 lines (36 loc) · 1.09 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
{
"name": "exonum-doc",
"version": "0.0.0",
"private": true,
"description": "JS dependencies for Exonum docs",
"devDependencies": {
"cspell": "^4.0.63",
"fs-extra": "^8.1.0",
"git-interface": "^2.0.5",
"markdownlint-cli": "^0.16.0",
"remark-cli": "^9.0.0",
"remark-lint-no-dead-urls": "^1.0.1",
"remark-validate-links": "^9.2.0",
"rimraf": "^2.6.2",
"shelljs": "^0.8.3",
"yamljs": "^0.3.0"
},
"scripts": {
"cspell": "cspell --config=misc/cspell.json src/**/*.md",
"md": "markdownlint --config=misc/markdownlint.json src/**/*.md",
"versioned": "node versioned.js",
"links": "remark -u validate-links --frail src/**/*.md",
"ext-links": "remark -u lint-no-dead-urls --frail src/**/*.md",
"test": "./misc/lint.sh all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/exonum/exonum-doc.git"
},
"author": "Exonum Team <exonum@bitfury.com>",
"license": "CC-BY-NC-SA-4.0",
"bugs": {
"url": "https://github.com/exonum/exonum-doc/issues"
},
"homepage": "https://github.com/exonum/exonum-doc#readme"
}