-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
{
"name": "cypress-mysql",
"version": "1.0.4",
"description": "Cypress MySQL plugin",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "mocha ./dist/test/*.spec.js",
"prebuild": "rimraf dist && npx prettier --write src/",
"build": "tsc -d",
"preversion": "rimraf dist && npm run build && npm run test"
},
"keywords": [
"cypress",
"plugin",
"mysql",
"sql",
"database",
"db"
],
"author": "Jovan Ilić <[email protected]> (https://jovanilic.com)",
"license": "MIT",
"homepage": "https://github.com/Zaista/cypress-mysql",
"bugs": "https://github.com/Zaista/cypress-mysql/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/Zaista/cypress-mysql.git"
},
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"dependencies": {
"mysql2": "3.11.0"
},
"peerDependencies": {
"cypress": ">=12"
},
"devDependencies": {
"@types/mocha": "10.0.7",
"@types/node": "22.1.0",
"mocha": "10.7.0",
"prettier": "3.3.3",
"rimraf": "^6.0.1",
"typescript": "5.5.4"
}
}