-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "deterministic-versions",
"version": "0.4.0",
"description": "deterministic git-based versioning for applications",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"deterministic-versions": "lib/cli.js"
},
"engines": {
"node": ">=22"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/tinyspeck/deterministic-versions.git"
},
"author": "Erick Zhao <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"lint": "eslint . --fix && prettier . --write",
"prepublishOnly": "npm run build",
"test": "jest"
},
"files": [
"lib"
],
"devDependencies": {
"@types/jest": "^27.5.0",
"@types/node": "^22.13.1",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"typescript": "^5.7.0"
},
"dependencies": {
"@malept/cross-spawn-promise": "^2.0.0",
"@octokit/rest": "^18.12.0",
"commander": "^13.1.0",
"dotenv": "^16.0.1",
"semver": "^7.3.7"
}
}