This repository has been archived by the owner on Jun 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.97 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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "quipudocs",
"version": "0.9.1",
"description": "Locale and documentation for Quipucords.",
"author": "Red Hat",
"license": "GPL-3.0",
"private": true,
"main": "./dist/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/quipucords/quipudocs.git"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"build": "run-s -l build:*; run-s test",
"build:gui": "sh ./scripts/build.gui.sh",
"build:gh": "sh ./scripts/build.gh.sh",
"build:locale": "node ./scripts/build.locale.js",
"deploy": "bash ./.travis/deploy.sh",
"start": "sh ./scripts/dev.localRun.sh -s ./src/community/titles/user/qpc/master.adoc -o user_qpc.html -s ./src/community/titles/user/discovery/master.adoc -o user_discovery.html -s ./src/community/titles/install/qpc/master.adoc -o install_qpc.html -s ./src/community/titles/install/discovery/master.adoc -o install_discovery.html",
"start:gh": "sh ./scripts/dev.localRun.sh -s ./src/community/titles/gh_pages/master.adoc -o gh_pages.html -s ./src/community/titles/user/qpc/master.adoc -o user.html -s ./src/community/titles/install/qpc/master.adoc -o install.html",
"test": "run-s -l test:dist test:html test:integration",
"test:lint": "eslint --ext=json --ext=js ./src/ea ./scripts;",
"test:dist": "eslint --ext=json --ext=js ./dist",
"test:html": "htmlhint ./dist ./docs",
"test:integration": "jest --roots=./tests",
"test:integration-dev": "run-s build; jest ./tests/* --watchAll"
},
"devDependencies": {
"@asciidoctor/cli": "^3.0.1",
"@asciidoctor/core": "2.0.3",
"eslint": "^6.3.0",
"eslint-config-node": "^4.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.0",
"htmlhint": "^0.11.0",
"iso-639-1": "^2.1.0",
"jest": "^24.9.0",
"npm-run-all":"^4.1.5",
"prettier": "^1.18.2"
}
}