-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.06 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.06 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
{
"name": "@dkfuh/orgscript",
"version": "0.9.6",
"description": "A human-readable, AI-friendly description language for business logic and operational systems.",
"license": "Apache-2.0",
"main": "./src/index.js",
"bin": {
"orgscript": "bin/orgscript.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DKFuH/OrgScript.git"
},
"bugs": {
"url": "https://github.com/DKFuH/OrgScript/issues"
},
"homepage": "https://github.com/DKFuH/OrgScript#readme",
"publishConfig": {
"access": "public"
},
"keywords": [
"business-logic",
"workflow-language",
"specification-language",
"domain-specific-language",
"state-machines",
"ai-tools",
"developer-tools",
"operational-logic",
"automation"
],
"files": [
"bin/",
"src/",
"spec/",
"LICENSE",
"NOTICE",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"validate": "node ./bin/orgscript.js validate ./examples/lead-qualification.orgs",
"check": "node ./bin/orgscript.js check ./examples/craft-business-lead-to-order.orgs",
"check:all": "node ./scripts/check-all.js",
"format": "node ./bin/orgscript.js format ./examples/craft-business-lead-to-order.orgs",
"format:check:all": "node ./scripts/format-check-all.js",
"lint": "node ./bin/orgscript.js lint ./tests/lint/process-missing-trigger.orgs",
"validate:all": "node ./scripts/validate-all.js",
"lint:all": "node ./scripts/lint-all.js",
"export:json": "node ./bin/orgscript.js export json ./examples/craft-business-lead-to-order.orgs",
"export:markdown": "node ./bin/orgscript.js export markdown ./examples/craft-business-lead-to-order.orgs",
"export:mermaid": "node ./bin/orgscript.js export mermaid ./examples/craft-business-lead-to-order.orgs",
"export:html": "node ./bin/orgscript.js export html ./examples/craft-business-lead-to-order.orgs",
"demo:generate": "node ./scripts/generate-demo.js",
"golden:generate": "node ./scripts/generate-golden.js",
"test": "node ./tests/run.js"
},
"engines": {
"node": ">=18"
}
}