-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "deterministic-versions",
"version": "0.3.1",
"description": "deterministic git-based versioning for applications",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "[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": "^17.0.31",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.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": "^4.7.2"
},
"dependencies": {
"@malept/cross-spawn-promise": "^2.0.0",
"@octokit/rest": "^18.12.0",
"dotenv": "^16.0.1",
"semver": "^7.3.7"
}
}