-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
43 lines (43 loc) · 1015 Bytes
/
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
{
"name": "@codeceptjs/configure",
"version": "1.0.1",
"description": "Set of CodeceptJS config hooks to simplify configuration",
"main": "index.js",
"scripts": {
"test": "jest test/index.test.js",
"test-integration": "cd test/integration && CI=true npx codeceptjs run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeceptjs/configure.git"
},
"keywords": [
"codeceptjs"
],
"author": "Michael Bodnarchuk",
"license": "ISC",
"bugs": {
"url": "https://github.com/codeceptjs/configure/issues"
},
"homepage": "https://github.com/codeceptjs/configure#readme",
"dependencies": {
"lodash.merge": "^4.6.2",
"lodash.mergewith": "^4.6.2"
},
"devDependencies": {
"codeceptjs": "^3.3.5",
"jest": "^29.0.2",
"puppeteer": "^2.1",
"webdriverio": "^8.3.5"
},
"peerDependencies": {
"codeceptjs": ">= 2.3.3"
},
"files": [
"hooks/*",
"codeceptjs.js",
"deepMerge.js",
"index.js",
"index.d.ts"
]
}