-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
67 lines (67 loc) · 2.11 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "cypress-react-selector",
"version": "3.0.0",
"description": "cypress plugin to locate react elements by component, props and state",
"main": "./index.js",
"keywords": [
"react",
"cypress",
"cypress-plugin",
"cypress-react",
"cypress-io",
"cypress-react-selector"
],
"scripts": {
"test": "cypress run --headless && cypress run-ct",
"format": "npx prettier --write .",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags && npm run release",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags && npm run release",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags && npm run release",
"release": "npm cache clean --force && npm publish --force"
},
"author": "Abhinaba Ghosh <[email protected]>",
"license": "MIT",
"devDependencies": {
"@cypress/react": "^6.0.0",
"@cypress/webpack-dev-server": "^2.0.0",
"cypress": "10.3.1",
"generate-changelog": "^1.8.0",
"html-webpack-plugin": "5",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "^2.0.5",
"pretty-quick": "3.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "^4.0.3",
"react-shadow-root": "^6.1.0"
},
"dependencies": {
"resq": "1.11.0"
},
"repository": {
"type": "git",
"url": "https://github.com/abhinaba-ghosh/cypress-react-selector.git"
},
"bugs": {
"url": "https://github.com/abhinaba-ghosh/cypress-react-selector/issues"
},
"homepage": "https://github.com/abhinaba-ghosh/cypress-react-selector#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": [
"pretty-quick --staged"
],
"src/**/*.js": [
"npm run format",
"npx cypress run"
],
"cypress/**/*.js": [
"npm run format"
]
}
}