-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.61 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.61 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
38
39
40
41
{
"name": "tindy",
"version": "1.0.0",
"description": "**Automate your Tinder swiping with style!** Tindy is a beautiful, feature-rich Chrome extension that helps you swipe through Tinder profiles efficiently with a sleek floating overlay interface.",
"main": "content.js",
"type": "module",
"scripts": {
"test": "npm run test:unit && npm run test:integration",
"test:unit": "jest --config jest.config.cjs --selectProjects unit",
"test:integration": "jest --config jest.config.cjs --selectProjects integration",
"test:e2e": "jest --config jest-e2e.config.cjs",
"test:all": "npm run test && npm run test:e2e",
"test:watch": "jest --config jest.config.cjs --watch",
"test:coverage": "jest --config jest.config.cjs --coverage",
"test:coverage:open": "npm run test:coverage && open coverage/lcov-report/index.html",
"test:unit:watch": "jest --config jest.config.cjs --selectProjects unit --watch",
"test:integration:watch": "jest --config jest.config.cjs --selectProjects integration --watch",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand"
},
"keywords": [
"chrome-extension",
"tinder",
"automation",
"testing"
],
"author": "Tindy Team",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@jest/globals": "^30.2.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"babel-jest": "^30.2.0",
"jest": "^30.2.0",
"jest-chrome": "^0.8.0",
"jest-environment-jsdom": "^30.2.0",
"jest-puppeteer": "^11.0.0",
"puppeteer": "^24.37.2"
}
}