forked from bahmutov/find-test-names
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 999 Bytes
/
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": "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"
},
"scripts": {
"test": "ava",
"semantic-release": "semantic-release"
},
"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": {
"acorn": "^8.5.0",
"acorn-walk": "^8.2.0",
"simple-bin-help": "^1.7.6"
},
"devDependencies": {
"ava": "^3.15.0",
"common-tags": "^1.8.0",
"prettier": "^2.4.1",
"semantic-release": "^18.0.0"
}
}