forked from google/accname
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.85 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
{
"name": "accname",
"version": "1.1.0",
"description": "This library contains a TypeScript implementation of the [Accessible Name Computation](https://www.w3.org/TR/accname-1.1/).",
"main": "dist/accessible_name.js",
"module": "dist/accessible_name.js",
"types": "dist/accessible_name.d.ts",
"directories": {
"doc": "docs"
},
"devDependencies": {
"@babel/core": "^7.17.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@types/jasmine": "^3.5.11",
"@types/node": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.17.0",
"@typescript-eslint/parser": "^3.6.0",
"clang-format": "^1.4.0",
"eslint": "^7.21.0",
"eslint-plugin-ban": "^1.5.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^32.2.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^4.2.5",
"jasmine": "^3.5.0",
"jasmine-core": "^3.5.0",
"karma": "^6.3.14",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-coverage": "^2.0.2",
"karma-firefox-launcher": "^1.3.0",
"karma-jasmine": "^3.3.1",
"karma-spec-reporter": "0.0.32",
"karma-typescript": "^5.0.3",
"karma-typescript-es6-transform": "^5.0.3",
"lit": "^2.0.2",
"rollup": "^2.41.0",
"typescript": "^3.9.5"
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "yarn && tsc",
"ibuild": "yarn && tsc --watch",
"pretest": "yarn build",
"test": "karma start --browsers ChromeHeadless,FirefoxHeadless --single-run --no-auto-watch",
"itest": "karma start --browsers Chrome,Firefox",
"prepack": "yarn test",
"fix": "yarn fix-lint && yarn fix-format",
"check-lint": "yarn && eslint --ext .ts src",
"fix-lint": "yarn && eslint --ext .ts --fix src",
"check-format": "clang-format --version; find src ! -path 'src/lib/parser.ts' | grep '\\.js$\\|\\.ts$' | xargs clang-format --style=file --dry-run -Werror",
"fix-format": "clang-format --version; find src ! -path 'src/lib/parser.ts' | grep '\\.js$\\|\\.ts$' | xargs clang-format --style=file -i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/google/accessible-name.git"
},
"keywords": [
"accname",
"accessible name",
"accessible name computation",
"a11y",
"web accessibility"
],
"author": "Oisín Nolan",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/google/accessible-name/issues"
},
"homepage": "https://github.com/google/accessible-name#readme",
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "yarn run fix",
"pre-push": "yarn run build && npx rollup dist/accessible_name.js --file bundle.js --format iife --name \"accname\" && git add bundle.js && git commit --amend --no-edit"
}
},
"publishConfig":{
"registry":"https://wombat-dressing-room.appspot.com"
}
}