-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
38 lines (38 loc) · 1.41 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
{
"name": "docpatch-grundgesetz-dev",
"description": "Development repository to maintain a human- and machine-readable version of the 'Grundgesetz der Bundesrepublik Deutschland'",
"keywords": [],
"version": "1.0.0",
"homepage": "https://gg.docpatch.org/",
"repository": {
"type": "git",
"url": "https://github.com/c3e/grundgesetz-web"
},
"bugs": {
"url": "https://github.com/c3e/grundgesetz-web/issues"
},
"license": "PDDL-1.0",
"author": "Benjamin Heisig <[email protected]> (https://benjamin.heisig.name/)",
"dependencies": {
"ajv-cli": "^3.0.0",
"jsonlint": "^1.6.3",
"npm-package-json-lint": "^3.6.0",
"remark-cli": "^6.0.1",
"remark-lint": "^6.0.4",
"remark-preset-lint-recommended": "^3.0.2"
},
"scripts": {
"test": "npm run-script lint-json && npm run-script lint-md",
"lint-md": "./node_modules/.bin/remark . --quiet",
"lint-json": "./node_modules/.bin/jsonlint etc/btwmeta.json -q && ./node_modules/.bin/jsonlint etc/meta.json -q",
"lint-packagejson": "./node_modules/.bin/npmPkgJsonLint .",
"validate-btwmeta-schema": "./node_modules/.bin/ajv",
"validate-meta-schema": "./node_modules/.bin/ajv",
"clean": "rm -rf ./out/ ./repo/"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}