-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "@wisersolutions/cypress-antd",
"version": "1.0.3",
"description": "Helpers for interacting with Ant Design components in Cypress tests.",
"repository": {
"type": "git",
"url": "git+https://github.com/WiserSolutions/cypress-antd"
},
"author": "Wiser Solutions, Inc.",
"contributors": [
"Jan Konopásek",
"Nate Dube"
],
"license": "MIT",
"main": "./lib/index.js",
"module": "./es/index.js",
"files": [
"/es",
"/lib"
],
"scripts": {
"format": "prettier --write \"./**/*.js\" --loglevel warn",
"lint": "eslint -f @wisersolutions/eslint-formatter-idea ./src ./cypress",
"test": "cypress run",
"tdd": "cypress open",
"build": "transpile-js",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@ant-design/icons": "^4.7.0",
"@wisersolutions/eslint-config": "^2.1.4",
"@wisersolutions/eslint-formatter-idea": "^1.0.8",
"@wisersolutions/transpile-js": "0.2.0",
"antd": "^4.23.4",
"babel-eslint": "^6.1.0",
"cypress": "^7.3.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-react": "^7.31.8",
"prettier": "^2.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"dependencies": {
"@babel/runtime": "^7.19.0",
"@hon2a/cypress-without": "^1.1.8",
"lodash": "^4.17.21"
}
}