This repository was archived by the owner on Jan 27, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.55 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.55 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
{
"name": "@cypress/commit-info",
"description": "Collects Git commit info from CI or from CLI",
"version": "0.0.0-development",
"author": "Cypress <hello@cypress.io> (http://www.cypress.io/)",
"bugs": "https://github.com/cypress-io/commit-info/issues",
"engines": {
"node": ">=6"
},
"files": [
"src/*.js",
"!src/*-spec.js"
],
"homepage": "https://github.com/cypress-io/commit-info#readme",
"keywords": [
"cli",
"commit",
"git",
"info"
],
"license": "MIT",
"main": "src/",
"private": false,
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/cypress-io/commit-info.git"
},
"scripts": {
"deps": "dependency-check --no-dev .",
"lint": "eslint",
"pretest": "npm run lint",
"prepare": "patch-package",
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"test": "npm run unit",
"unit": "mocha src/*-spec.js"
},
"devDependencies": {
"@stylistic/eslint-plugin": "5.3.1",
"chdir-promise": "0.6.2",
"dependency-check": "4.1.0",
"eslint": "9.34.0",
"eslint-plugin-mocha": "11.1.0",
"globals": "16.3.0",
"mocha": "11.7.2",
"mocked-env": "1.3.5",
"patch-package": "8.0.1",
"semantic-release": "24.2.7",
"snap-shot-it": "7.9.10",
"stub-spawn-once": "2.3.0"
},
"dependencies": {
"bluebird": "3.7.2",
"check-more-types": "2.24.0",
"debug": "4.4.1",
"execa": "^2.0.0",
"lazy-ass": "1.6.0",
"ramda": "0.26.1"
}
}