forked from qualweb/best-practices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 3.27 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@qualweb/best-practices",
"version": "0.6.11",
"description": "QualWeb best practices",
"main": "dist/bp.bundle.js",
"files": [
"dist/*"
],
"scripts": {
"tsc": "tsc",
"test": "mocha",
"test:url": "mocha test/url.spec.mjs",
"test:bp1": "mocha test/best-practices/QW-BP1.spec.mjs",
"test:bp2": "mocha test/best-practices/QW-BP2.spec.mjs",
"test:bp4": "mocha test/best-practices/QW-BP4.spec.mjs",
"test:bp5": "mocha test/best-practices/QW-BP5.spec.mjs",
"test:bp6": "mocha test/best-practices/QW-BP6.spec.mjs",
"test:bp7": "mocha test/best-practices/QW-BP7.spec.mjs",
"test:bp8": "mocha test/best-practices/QW-BP8.spec.mjs",
"test:bp9": "mocha test/best-practices/QW-BP9.spec.mjs",
"test:bp10": "mocha test/best-practices/QW-BP10.spec.mjs",
"test:bp11": "mocha test/best-practices/QW-BP11.spec.mjs",
"test:bp12": "mocha test/best-practices/QW-BP12.spec.mjs",
"test:bp13": "mocha test/best-practices/QW-BP13.spec.mjs",
"test:bp15": "mocha test/best-practices/QW-BP15.spec.mjs",
"test:bp17": "mocha test/best-practices/QW-BP17.spec.mjs",
"test:bp18": "mocha test/best-practices/QW-BP18.spec.mjs",
"test:bp19": "mocha test/best-practices/QW-BP19.spec.mjs",
"test:bp20": "mocha test/best-practices/QW-BP20.spec.mjs",
"test:bp21": "mocha test/best-practices/QW-BP21.spec.mjs",
"test:bp22": "mocha test/best-practices/QW-BP22.spec.mjs",
"test:bp23": "mocha test/best-practices/QW-BP23.spec.mjs",
"test:bp24": "mocha test/best-practices/QW-BP24.spec.mjs",
"test:bp28": "mocha test/best-practices/QW-BP28.spec.mjs",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"compile:bps": "node compile-bps.js",
"prebuild": "rimraf prebuild && npm run compile:bps && rimraf dist",
"build": "tsc --build && webpack --mode production",
"postbuild": "rimraf prebuild",
"prepare": "npm run build",
"release": "npm run build && npx changeset publish",
"release-snapshot": "npm run build && npx changeset version --snapshot next && npx changeset publish --tag next"
},
"homepage": "https://github.com/qualweb/best-practices#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/qualweb/best-practices.git"
},
"bugs": {
"url": "https://github.com/qualweb/best-practices/issues"
},
"keywords": [
"qualweb",
"best-practices",
"a11y",
"evaluation",
"accessibility"
],
"author": "João Vicente",
"license": "ISC",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@qualweb/dom": "0.2.4",
"@qualweb/locale": "0.1.11",
"@qualweb/qw-page": "0.2.12",
"@qualweb/types": "0.7.17",
"@qualweb/util": "0.5.14",
"@tsconfig/recommended": "^1.0.1",
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"chai": "^4.3.4",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-sonarjs": "^0.11.0",
"mocha": "^9.1.3",
"prettier": "^2.5.1",
"puppeteer": "^13.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.5.3",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
}
}