-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
89 lines (89 loc) · 2.93 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@bahmutov/cypress-examples",
"version": "0.0.0-development",
"description": "Cypress.io command examples",
"private": false,
"scripts": {
"test": "cypress run",
"cy:open": "cypress open",
"cy:open:exported": "cypress open --config-file cypress-dist.config.js",
"cy:run:exported": "cypress run --config-file cypress-dist.config.js",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"precopy:fiddles": "npm run export:examples",
"copy:fiddles": "cp fiddles.json public/cypress-examples",
"copy:robots": "cp robots.txt public/cypress-examples",
"postdocs:build": "npm run copy:fiddles && npm run copy:robots",
"check:links": "find . -type f -name '*.md' ! -path './node_modules/*' | xargs -L1 npx markdown-link-check --config ./links-check-config.json --quiet",
"format": "prettier --write 'docs/**/*.md'",
"format:extracted": "prettier --write 'docs/**/*.js' '!docs/.vuepress/**/*.js'",
"stop-only": "stop-only --folder docs --skip docs/.vuepress",
"to-js": "node ./md-to-js",
"serve": "http-server -c-1 --port=5000 --silent public",
"semantic-release": "semantic-release",
"badges": "update-badge cypress",
"predev:export": "npm run docs:build && npm run to-js",
"dev:export": "start-test serve 5000 cy:open:exported",
"prerun:exported": "npm run docs:build && npm run to-js",
"run:exported": "start-test serve 5000 cy:run:exported",
"export:examples": "node ./src/collect-fiddles"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/cypress-examples.git"
},
"files": [
"docs/**/*.js",
"!docs/.vuepress",
"cypress.json",
"cypress/fixtures"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"cypress-example"
],
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/bahmutov/cypress-examples/issues"
},
"homepage": "https://github.com/bahmutov/cypress-examples#readme",
"devDependencies": {
"@vuepress/plugin-docsearch": "^2.0.0-beta.61",
"chai-each": "^0.0.1",
"chai-sorted": "^0.2.0",
"common-tags": "1.8.0",
"cypress": "13.17.0",
"cypress-book": "1.5.0",
"cypress-map": "1.43.0",
"cypress-markdown-preprocessor": "1.10.22",
"cypress-recurse": "^1.31.2",
"dependency-version-badge": "1.2.0",
"globby": "11.0.1",
"http-server": "0.12.3",
"husky": "4.2.5",
"lint-staged": "10.1.3",
"markdown-link-check": "3.12.1",
"pluralize": "8.0.0",
"prettier": "2.8.8",
"semantic-release": "^17.0.7",
"shelljs": "0.8.4",
"start-server-and-test": "2.0.10",
"stop-only": "^3.3.1",
"vuepress": "2.0.0-beta.61",
"vuepress-plugin-clean-urls": "1.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run stop-only"
}
},
"lint-staged": {
"*.{js,md}": [
"prettier --write"
]
}
}