-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.97 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.97 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
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
{
"name": "mapterrain",
"version": "0.2.0",
"description": "Terrain test intelligence CLI.",
"type": "module",
"bin": {
"mapterrain": "bin/terrain-cli.js",
"terrain": "bin/terrain-cli.js"
},
"files": [
"bin",
"README.md",
"SECURITY.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pmclSF/terrain.git"
},
"homepage": "https://github.com/pmclSF/terrain#readme",
"bugs": {
"url": "https://github.com/pmclSF/terrain/issues"
},
"scripts": {
"postinstall": "node bin/postinstall.js",
"test": "node scripts/verify-pack.js",
"lint": "eslint \"bin/*.js\" \"scripts/*.js\"",
"format": "prettier --write \"bin/*.js\" \"scripts/*.js\"",
"format:check": "prettier --check \"bin/*.js\" \"scripts/*.js\"",
"start": "node bin/terrain-cli.js",
"convert": "node bin/terrain-cli.js convert",
"lint-staged": "lint-staged",
"release:verify": "npm run format:check && npm run lint && npm test",
"prepublishOnly": "npm run format:check && npm run lint && npm test"
},
"keywords": [
"terrain",
"test-intelligence",
"test-analysis",
"risk-analysis",
"playwright",
"cypress",
"selenium",
"jest",
"vitest",
"mocha",
"jasmine",
"junit",
"testng",
"pytest",
"unittest",
"nose2",
"webdriverio",
"puppeteer",
"testcafe",
"testing",
"automation",
"migration",
"e2e-testing",
"test-migration",
"test-converter"
],
"author": "pmclSF",
"license": "Apache-2.0",
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"lint-staged": "^16.2.7",
"prettier": "^3.0.0"
},
"lint-staged": {
"{bin,scripts}/*.js": [
"prettier --write",
"eslint --fix --max-warnings=0"
]
},
"engines": {
"node": ">=22.0.0"
},
"sideEffects": false
}