-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.55 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
{
"name": "inaccessible.css",
"version": "1.4.1",
"description": "A stylesheet to highlight inaccessible markup",
"main": "inaccessible.css",
"scripts": {
"build": "npx sass src/scss/inaccessible.scss dist/css/inaccessible.css --style compressed",
"start": "npx sass src/scss/inaccessible.scss dist/css/inaccessible.css --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielmatthew/inaccessible.css.git"
},
"keywords": [
"accessibility",
"css",
"utility"
],
"author": "github@danmatthew.co.uk",
"license": "ISC",
"bugs": {
"url": "https://github.com/danielmatthew/inaccessible.css/issues"
},
"homepage": "https://github.com/danielmatthew/inaccessible.css#readme",
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^10.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.7",
"husky": "^8.0.3",
"sass": "^1.26.10",
"semantic-release": "^21.0.1"
},
"release": {
"branches": "main",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json",
"package-lock.json"
]
}
],
"@semantic-release/github"
]
}
}