-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 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
{
"name": "@serialized/serialized-client",
"description": "Client library for Serialized APIs.",
"license": "MIT",
"author": "Serialized",
"version": "8.3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/serialized-io/client-js",
"bugs": {
"url": "https://github.com/serialized-io/client-js/issues/"
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "rm -rf dist && tsc --build --clean && tsc",
"link": "npm run build && cd dist && npm link",
"test": "jest --config jest.config.js"
},
"repository": {
"type": "git",
"url": "git@github.com:serialized-io/client-js.git"
},
"keywords": [
"serialized",
"event sourcing",
"domain driven design",
"cqrs"
],
"dependencies": {
"@types/uuid": "8.3.0",
"axios": "0.26.1",
"uuid": "8.3.0"
},
"devDependencies": {
"@types/jest": "29.5.0",
"@types/node": "18.14.1",
"jest": "29.5.0",
"nock": "13.2.4",
"ts-jest": "29.0.5",
"typescript": "4.9.5"
},
"engines": {
"npm": ">=6.0.0",
"node": ">=16.0.0"
}
}