forked from cypress-io/cypress-example-circleci-orb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.77 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
{
"name": "cypress-example-circleci-orb",
"version": "1.0.0",
"description": "Example project that shows Cypress CircleCI Orb in action",
"main": "index.js",
"private": true,
"scripts": {
"test": "npm run unit",
"validate": "circleci config validate .circleci/config.yml",
"process": "circleci config process .circleci/config.yml",
"build": "echo building app 😃",
"server": "node ./server",
"unit": "ava-ts --verbose 'test/*.test.ts'",
"cy:run": "cypress run",
"delete:reports": "rm cypress/results/* || true",
"prereport": "npm run delete:reports",
"report": "cypress run --record false --reporter mocha-multi-reporters --reporter-options configFile=reporter-config.json"
},
"engines": {
"node": ">=10",
"npm": ">=6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cypress-io/cypress-example-circleci-orb.git"
},
"keywords": [],
"author": "Gleb Bahmutov <[email protected]> (https://glebbahmutov.com/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/cypress-io/cypress-example-circleci-orb/issues"
},
"homepage": "https://github.com/cypress-io/cypress-example-circleci-orb#readme",
"devDependencies": {
"@bahmutov/print-env": "1.2.0",
"@types/common-tags": "1.8.0",
"@types/execa": "0.9.0",
"@types/node": "10.17.16",
"@types/temp-write": "3.3.0",
"ava": "3.3.0",
"ava-ts": "0.25.2",
"cypress": "4.0.2",
"execa": "2.1.0",
"husky": "4.2.3",
"js-yaml": "3.13.1",
"mocha": "5.2.0",
"mocha-junit-reporter": "1.23.3",
"mocha-multi-reporters": "1.1.7",
"temp-write": "4.0.0",
"ts-node": "7.0.1",
"typescript": "3.7.5"
},
"husky": {
"hooks": {
"pre-commit": "npm run validate && npm run unit"
}
}
}