This repository has been archived by the owner on Dec 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
70 lines (70 loc) · 1.8 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@qualweb/cli",
"version": "0.6.4",
"description": "QualWeb evaluator command line interface",
"main": "dist/index.js",
"bin": {
"qw": "./bin/cli.js"
},
"files": [
"dist/*"
],
"scripts": {
"tsc": "tsc",
"test": "mocha",
"prebuild": "rimraf dist",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"build": "npm run prebuild && npm run format && npm run lint && tsc --build",
"typedoc": "typedoc --out docs src/index.ts",
"prepare": "npm run build"
},
"keywords": [
"qualweb",
"cli",
"a11y",
"accessibility"
],
"homepage": "https://github.com/qualweb/cli#readme",
"bugs": {
"url": "https://github.com/qualweb/cli/issues",
"email": "qualweb@fc.ul.pt"
},
"repository": {
"type": "git",
"url": "https://github.com/qualweb/cli.git"
},
"engines": {
"node": ">=12.0.0"
},
"author": "João Vicente",
"license": "ISC",
"dependencies": {
"@qualweb/core": "0.6.15",
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.1",
"log-update": "^4.0.0",
"set-value": "^4.0.0"
},
"devDependencies": {
"@qualweb/types": "0.6.13",
"@tsconfig/recommended": "^1.0.1",
"@types/command-line-args": "^5.0.0",
"@types/command-line-usage": "^5.0.1",
"@types/node": "^16.4.1",
"@types/set-value": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"chai": "^4.3.4",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-sonarjs": "^0.9.1",
"mocha": "^9.0.2",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"typedoc": "^0.21.4",
"typescript": "^4.3.5"
}
}