-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.67 KB
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-markdown-preprocessor",
"version": "0.0.0-development",
"description": "Use Markdown files as Cypress specs",
"main": "src/index.js",
"files": [
"src",
"bin"
],
"bin": {
"export-fiddles": "bin/export-fiddles.js",
"collect-fiddles": "bin/collect-fiddles.js"
},
"scripts": {
"cy:open": "cypress open",
"cy:run": "cypress run",
"test": "cypress-expect run --min-passing 2",
"semantic-release": "semantic-release",
"badges": "npx -p dependency-version-badge update-badge cypress @bahmutov/cypress-fiddle",
"demo:collect": "node bin/collect-fiddles -p cypress/e2e/many-fiddles.md cypress/e2e/require.md"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/cypress-markdown-preprocessor.git"
},
"keywords": [
"cypress",
"cypress-preprocessor",
"markdown"
],
"author": "Gleb Bahmutov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bahmutov/cypress-markdown-preprocessor/issues"
},
"homepage": "https://github.com/bahmutov/cypress-markdown-preprocessor#readme",
"dependencies": {
"@bahmutov/cypress-fiddle": "2.6.2",
"@cypress/browserify-preprocessor": "3.0.2",
"@textlint/markdown-to-ast": "15.7.1",
"chokidar": "5.0.0",
"common-tags": "1.8.0",
"debug": "4.3.4",
"execa": "^5.1.1",
"globby": "^11.1.0",
"temp-write": "4.0.0"
},
"devDependencies": {
"@types/node": "14.14.14",
"cy-spok": "^1.5.2",
"cypress": "15.17.0",
"cypress-expect": "3.1.6",
"cypress-should-really": "1.6.3",
"cypress-split": "^1.2.0",
"prettier": "2.2.1",
"semantic-release": "25.0.5"
}
}