-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (38 loc) · 1.26 KB
/
package.json
File metadata and controls
39 lines (38 loc) · 1.26 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
{
"name": "fmlrunner",
"version": "0.1.0",
"description": "FHIR Mapping Language (FML) Runner - Kotlin Multiplatform implementation",
"private": true,
"scripts": {
"build": "gradle build",
"test": "gradle test",
"clean": "gradle clean",
"build:js": "gradle jsMainClasses",
"build:jvm": "gradle jvmMainClasses",
"test:js": "gradle jsTest",
"test:jvm": "gradle jvmTest",
"lint": "echo 'Kotlin linting handled by gradle build'",
"publish:dry-run": "node scripts/version.js publish --dry-run",
"publish:all": "node scripts/version.js publish",
"tag": "git tag v$(node scripts/version.js current)",
"version:current": "node scripts/version.js current",
"version:patch": "node scripts/version.js bump patch",
"version:minor": "node scripts/version.js bump minor",
"version:major": "node scripts/version.js bump major",
"version:set": "node scripts/version.js set"
},
"devDependencies": {},
"engines": {
"java": ">=11"
},
"author": "Carl Leitner",
"license": "MIT",
"homepage": "https://github.com/litlfred/fmlrunner#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/litlfred/fmlrunner.git"
},
"bugs": {
"url": "https://github.com/litlfred/fmlrunner/issues"
}
}