-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.24 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.24 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
{
"name": "github-devwatch-chrome",
"version": "1.0.2",
"description": "Chrome extension for monitoring GitHub repository activity",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"lint": "node node_modules/eslint/bin/eslint.js .",
"typecheck": "node node_modules/typescript/bin/tsc --noEmit -p jsconfig.json",
"build": "node scripts/build.js",
"validate": "npm run lint && npm run typecheck && npm run test:coverage && npm run build",
"format": "prettier --write \"**/*.{js,json,md}\"",
"prepare": "husky"
},
"keywords": [
"chrome-extension",
"github",
"notifications"
],
"author": "Jonathan Martin",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.1",
"@testing-library/jest-dom": "^6.9.1",
"@types/chrome": "^0.1.36",
"axe-core": "^4.11.1",
"eslint": "^9.39.1",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-axe": "^10.0.0",
"jest-environment-jsdom": "^30.2.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
}
}