-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
56 lines (56 loc) · 1.62 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
{
"name": "find-test-names",
"version": "0.0.0-development",
"description": "Given a Mocha / Cypress spec file, returns the list of suite and test names",
"main": "src",
"files": [
"bin",
"src"
],
"bin": {
"find-test-names": "bin/find-test-names.js",
"update-test-count": "bin/update-test-count.js",
"print-tests": "bin/print-tests.js"
},
"scripts": {
"test": "ava --config ava.config.mjs",
"semantic-release": "semantic-release",
"demo": "DEBUG=find-test-names node bin/find-test-names.js demo/spec.js",
"demo-update-md": "DEBUG=find-test-names node bin/update-test-count.js out.md 'test-cy/**/*.js'",
"demo-print": "node bin/print-tests.js 'test-cy/**/*.js'",
"stop-only": "DEBUG=stop-only stop-only --folder test --exclude exclusive.js",
"prepare": "husky install",
"deps": "npm audit --report --omit dev"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/find-test-names.git"
},
"keywords": [
"mocha",
"cypress",
"tests"
],
"author": "Gleb Bahmutov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bahmutov/find-test-names/issues"
},
"homepage": "https://github.com/bahmutov/find-test-names#readme",
"dependencies": {
"@babel/parser": "^7.24.7",
"@babel/plugin-syntax-jsx": "^7.24.7",
"acorn-walk": "^8.2.0",
"debug": "^4.3.3",
"globby": "^11.0.4",
"simple-bin-help": "^1.8.0"
},
"devDependencies": {
"ava": "6.2.0",
"common-tags": "1.8.2",
"husky": "9.1.7",
"prettier": "3.4.2",
"semantic-release": "24.2.1",
"stop-only": "3.4.2"
}
}