-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.82 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.82 KB
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
{
"name": "open-terms-archive-docs",
"version": "0.0.1",
"description": "The Open Terms Archive documentation.",
"homepage": "https://github.com/OpenTermsArchive/doc#readme",
"bugs": {
"url": "https://github.com/OpenTermsArchive/doc/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenTermsArchive/doc.git"
},
"license": "CC BY-SA 4.0",
"author": "Open Terms Archive",
"scripts": {
"build": "npm run jsdoc && hugo --minify",
"generate-metadata-reference": "node scripts/generate-metadata-reference.mjs",
"jsdoc": "jsdoc2md --files './node_modules/@opentermsarchive/engine/src/**/*.js' --template scripts/jsdoc/template/node.hbs -g grouped --name-format -d 4 > content/api/node.md",
"lint:css": "stylelint \"themes/opentermsarchive/assets/css/*.css\"",
"lint:js": "eslint themes/opentermsarchive/assets/js/",
"lint:markdown": "markdownlint *.md content/**/*.md",
"start:dev": "npm run jsdoc && hugo serve --watch --logLevel debug --disableFastRender --ignoreCache",
"test": "npm run lint:markdown && npm run lint:css && npm run lint:js && npm run test:links",
"pretest:links": "npm run build",
"test:links": "linkinator ./public --recurse --verbosity error"
},
"dependencies": {
"@opentermsarchive/engine": "github:OpenTermsArchive/engine#main",
"minireset.css": "^0.0.7",
"node-fetch": "^3.3.2",
"postcss": "^8.4.19",
"postcss-cli": "^10.1.0",
"postcss-mixins": "^9.0.4",
"postcss-preset-env": "^7.8.3"
},
"devDependencies": {
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"jsdoc-to-markdown": "^9.1.1",
"linkinator": "^5.0.1",
"lucide": "^0.460.0",
"markdownlint-cli": "^0.32.2",
"simple-icons": "^13.17.0",
"stylelint": "^14.16.1",
"stylelint-config-standard": "^29.0.0"
}
}