-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
66 lines (66 loc) · 1.59 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
{
"name": "@wmfs/statebox",
"version": "0.0.0-semantically-released",
"description": "Orchestrate Node functions using Amazon States Language",
"author": "West Midlands Fire Service",
"homepage": "https://github.com/wmfs/statebox#readme",
"keywords": [
"tymly",
"package",
"fsm",
"finite",
"state machines",
"aws"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wmfs/statebox.git"
},
"bugs": {
"url": "https://github.com/wmfs/statebox/issues"
},
"main": "./lib/index.js",
"dependencies": {
"@hapi/boom": "10.0.1",
"@wmfs/asl-choice-processor": "1.24.1",
"debug": "4.3.7",
"dottie": "2.0.6",
"jsonpath": "1.1.1",
"lodash": "4.17.21",
"luxon": "3.5.0",
"tokenizr": "^1.6.7",
"uuid": "11.0.3"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"axios": "1.7.7",
"chai": "4.5.0",
"chai-string": "1.5.0",
"chai-subset": "1.6.0",
"codecov": "3.8.3",
"conventional-changelog-metahub": "4.0.1",
"cz-conventional-changelog": "3.3.0",
"dirty-chai": "2.0.1",
"express": "4.21.1",
"mocha": "10.8.2",
"nyc": "17.1.0",
"semantic-release": "24.2.0",
"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"
}
}