-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.62 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@inclusive-design/inclusive-disclosure",
"version": "0.0.2",
"description": "Web component implementation of the disclosure pattern",
"main": "src/inclusive-disclosure.js",
"type": "module",
"scripts": {
"build": "elena build",
"lint": "run-s -l lint:*",
"lint:eslint": "eslint",
"lint:markdownlint": "markdownlint-cli2 \"**/*.md\"",
"lint:stylelint": "stylelint \"**/*.css\"",
"prepare": "husky",
"prepublish": "elena build",
"start": "elena watch",
"test": "node --test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inclusive-design/inclusive-disclosure.git"
},
"keywords": [
"component",
"disclosure",
"aria",
"web-component"
],
"author": "OCAD University <idrc@ocadu.ca>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/inclusive-design/inclusive-disclosure/issues"
},
"homepage": "https://github.com/inclusive-design/inclusive-disclosure#readme",
"dependencies": {
"@elenajs/core": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^21.0.0",
"@commitlint/config-conventional": "^21.0.0",
"@elenajs/bundler": "^1.0.0",
"@inclusive-design/eslint-config": "^0.5.0",
"@inclusive-design/markdownlint-config": "^0.1.0",
"@inclusive-design/stylelint-config": "^0.1.0",
"eslint": "^10.0.0",
"husky": "^9.0.0",
"lint-staged": "^17.0.0",
"npm-run-all2": "^9.0.0"
},
"lint-staged": {
"*.css": [
"stylelint --fix"
],
"*.{cjs,js,json,mjs}": [
"eslint --fix"
],
"*.md": [
"eslint --fix",
"markdownlint-cli2 --fix"
]
}
}