-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 855 Bytes
/
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
{
"name": "screen-audio-recorder",
"version": "2.0.0",
"description": "Professional screen and audio recording Chrome extension",
"main": "background.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "jest --config jest.e2e.config.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [
"chrome-extension",
"screen-recorder",
"audio-recorder"
],
"author": "adryan serage",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.1.3",
"babel-jest": "^29.7.0",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"jest-chrome": "^0.8.0",
"jest-environment-jsdom": "^29.7.0",
"puppeteer": "^21.11.0"
}
}