-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 974 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
{
"name": "simple-versioner",
"version": "1.2.1",
"description": "Create version based on data from the build",
"bin": "./lib/bin.js",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"build:check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hvdb/simple-versioner.git"
},
"keywords": [
"azure-pipelines"
],
"author": "Henk van den Brink",
"license": "MIT",
"bugs": {
"url": "https://github.com/hvdb/simple-versioner/issues"
},
"homepage": "https://github.com/hvdb/simple-versioner#readme",
"files": [
"bin",
"lib"
],
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}