-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.17 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
{
"name": "regression-tests",
"version": "1.0.0",
"description": "",
"main": "codecept.conf.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "node run-tests.js",
"actions": "node run-tests.js",
"start:browser-sync:prod": "NODE_ENV=prod node bs-config.js",
"start:browser-sync:dev": "NODE_ENV=dev node bs-config.js",
"start:browser-sync:stg": "NODE_ENV=stg node bs-config.js",
"test:prod": "NODE_ENV=prod npx codeceptjs run",
"test:dev": "NODE_ENV=dev npx codeceptjs run",
"test:stg": "NODE_ENV=stg npx codeceptjs run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vin-vlad/regression-tests.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vin-vlad/regression-tests/issues"
},
"homepage": "https://github.com/vin-vlad/regression-tests#readme",
"devDependencies": {
"codeceptjs": "^3.0.7",
"codeceptjs-chai": "^2.3.1",
"needle": "^2.6.0",
"puppeteer": "^10.0.0"
},
"dependencies": {
"browser-sync": "^2.27.1",
"color-convert": "^2.0.1",
"concurrently": "^6.2.1",
"config": "^3.3.6",
"util": "^0.12.4"
}
}