-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 1.99 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@wmfs/tymly",
"version": "0.0.0-semantically-released",
"description": "A framework for building and sharing workflows in Node.js",
"author": "West Midlands Fire Service",
"homepage": "https://github.com/wmfs/tymly-core#readme",
"keywords": [
"tymly",
"package",
"low code",
"workflow",
"open source"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wmfs/tymly-core.git"
},
"bugs": {
"url": "https://github.com/wmfs/tymly-core/issues"
},
"main": "./lib/index.js",
"dependencies": {
"@hapi/boom": "10.0.1",
"@wmfs/statebox": "1.114.0",
"@wmfs/tymly-statelint": "1.56.0",
"@wmfs/json-path-input-resolver": "1.1.0",
"cls-hooked": "4.2.2",
"debug": "4.4.0",
"dottie": "2.0.6",
"fast-json-patch": "3.1.1",
"glob": "11.0.1",
"jsonpath": "1.1.1",
"lodash": "4.17.21",
"lru-cache": "11.0.2",
"mkdirp": "3.0.1",
"moment": "2.30.1",
"nanoid": "3.3.8",
"pino": "9.6.0",
"pino-pretty": "13.0.0",
"read-pkg-up": "7.0.1",
"underscore-query": "3.3.2",
"upath": "2.0.1",
"uuid": "11.1.0"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/release-notes-generator": "14.0.3",
"@semantic-release/git": "10.0.1",
"@wmfs/tymly-test-helpers": "1.24.0",
"chai": "4.5.0",
"chai-string": "1.5.0",
"chai-subset": "1.6.0",
"codecov": "3.8.3",
"conventional-changelog-conventionalcommits": "8.0.0",
"cz-conventional-changelog": "3.3.0",
"dirty-chai": "2.0.1",
"mocha": "11.1.0",
"nyc": "17.1.0",
"semantic-release": "24.2.3",
"standard": "17.1.2"
},
"scripts": {
"lint": "standard",
"test": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"semantic-release": "semantic-release"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
}
}