-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.34 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
{
"name": "@katesclau/event-store-node",
"version": "0.0.2",
"description": "Event Store Node Client (Based on REST API)",
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/katesclau/event-store-node.git"
},
"scripts": {
"build": "tsc",
"event-store-local": "docker-compose up -d",
"test": "jest",
"prettify": "pretty-quick --staged"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && npm run test && npm run prettify"
}
},
"keywords": [
"event",
"store",
"client",
"nodejs"
],
"author": "Diego Ferreira",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.3",
"@types/lodash": "^4.14.157",
"@types/node": "^14.0.14",
"@types/uuid": "^8.0.0",
"@types/zen-observable": "^0.8.0",
"dotenv": "^8.2.0",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"dependencies": {
"axios": "^0.19.2",
"husky": "^4.2.5",
"lodash": "^4.17.15",
"uuid": "^8.2.0",
"zen-observable": "^0.8.15"
},
"bugs": {
"url": "https://github.com/katesclau/event-store-node/issues"
},
"homepage": "https://github.com/katesclau/event-store-node#readme",
"directories": {
"lib": "lib"
}
}