-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "cypress-utils-criteo",
"version": "2.0.2",
"description": "A set of utils used at Criteo for Cypress",
"exports": {
"./*": "./dist/*",
"./dist/*": null,
"./src/*": null
},
"typesVersions": {
"*": {
"*": [
"dist/*/index.d.ts",
"src/cypress-utils-criteo.d.ts"
]
}
},
"scripts": {
"build": "tsc --project tsconfig.json",
"lint": "prettier --list-different .",
"lint:fix": "prettier --write .",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/criteo/cypress-utils-criteo.git"
},
"keywords": [
"cypress",
"material",
"criteo"
],
"author": "Criteos",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/criteo/cypress-utils-criteo/issues"
},
"homepage": "https://github.com/criteo/cypress-utils-criteo#readme",
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/lodash": "4.14.168",
"cypress": "12.17.3",
"prettier": "3.0.1",
"typescript": "5.1.6"
}
}