-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 796 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 796 Bytes
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
{
"name": "act-shared-reports",
"license": "W3C COMMUNITY CONTRIBUTOR LICENSE AGREEMENT (CLA)",
"version": "0.2.0",
"type": "module",
"scripts": {
"report": "npm run report:ember && report:jsx-a11y",
"report:ember": "yarn ts-node ./src/runEmberTempaleLint.ts",
"report:jsx-a11y": "yarn ts-node ./src/runJsxA11y.ts",
"ts-node": "node --experimental-specifier-resolution=node --experimental-modules --no-warnings --loader ts-node/esm"
},
"dependencies": {
"act-tools": "act-rules/act-tools",
"dotenv": "^16.0.1",
"ember-template-lint": "^5.5.1",
"eslint": "^8.27.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"node-fetch": "^3.2.5",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"devDependencies": {
"@types/node": "^17.0.39"
}
}