-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.36 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.36 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@conceptkernel/ck-client-js",
"version": "1.3.24",
"description": "Elegant JavaScript client for ConceptKernel - One-line connectivity to distributed event-sourced workflows",
"main": "index.js",
"types": "index.d.ts",
"bin": {
"ck-client": "./cli.js"
},
"files": [
"index.js",
"index.d.ts",
"cli.js",
"schemas/",
"README.md",
"LICENSE",
"CHANGELOG.md",
"RELEASE_NOTES_v1.3.22.md"
],
"scripts": {
"test": "mocha test/*.spec.js --timeout 10000",
"test:unit": "mocha test/unit.spec.js",
"test:integration": "mocha test/integration.spec.js --timeout 10000",
"test:nats": "mocha tests/nats-*.test.js --timeout 10000",
"test:nats:connection": "mocha tests/nats-connection.test.js --timeout 10000",
"test:nats:discovery": "mocha tests/nats-discovery.test.js --timeout 10000",
"test:nats:subscriptions": "mocha tests/nats-subscriptions.test.js --timeout 10000",
"test:nats:pump": "mocha tests/nats-message-pump.test.js --timeout 15000",
"test:nats:integration": "mocha tests/nats-integration.test.js --timeout 15000",
"test:nats:live": "node tests/live-nats-test.mjs",
"test:all": "npm run test && npm run test:nats",
"test:browser": "playwright test",
"test:hot-kernels": "node hot-kernels.test.js",
"test:legacy": "node test/test.js",
"example:nats": "node examples/nats-integration-example.js",
"example:nats-compare": "node examples/nats-integration-example.js --compare",
"lint": "echo 'No linter configured'",
"prepublishOnly": "echo 'Skipping cleanup-for-export.sh during npm publish --dry-run';"
},
"repository": {
"type": "git",
"url": "https://github.com/ConceptKernel/ck-client-js.git"
},
"keywords": [
"conceptkernel",
"event-sourcing",
"distributed-systems",
"workflow",
"real-time",
"websocket",
"bfo",
"ontology",
"process-tracking"
],
"author": "Peter Styk <peter@styk.tv>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ConceptKernel/ck-client-js/issues"
},
"homepage": "https://conceptkernel.org",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"chai": "^6.2.1",
"mocha": "^11.7.5",
"nats": "^2.28.2",
"sinon": "^19.0.2"
},
"dependencies": {
"nats.ws": "^1.30.3"
},
"peerDependenciesMeta": {
"nats.ws": {
"optional": true
}
}
}