-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.91 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
{
"name": "tarant-sync-router-express",
"version": "0.2.59",
"description": "Actor model for reactive and scalable applications.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://www.tarant.io/",
"publishConfig": {
"access": "public"
},
"keywords": [
"actor system",
"actor",
"DDD",
"actor-system",
"backend",
"back end",
"sync",
"express"
],
"scripts": {
"prepare": "yarn build",
"build": "tsc",
"build:dev": "nodemon",
"format": "prettier --write \"**/*.ts\" && tslint -p tsconfig.json --fix lib/**/*.ts -t verbose",
"lint": "tslint -p tsconfig.json",
"test": "yarn format && yarn lint && jest test",
"test:dev": "jest --watchAll test",
"test:cov": "yarn format && yarn lint && jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"push": "yarn test && git push",
"deploy:major": "yarn version --major",
"deploy:minor": "yarn version --minor",
"deploy:patch": "yarn version --patch",
"deploy:push": "git push && git push --tags",
"preversion": "yarn test"
},
"contributors": [
"Kevin Mas Ruiz <[email protected]>",
"Kanekotic <[email protected]>"
],
"repository": "[email protected]:tarantx/tarant-sync-router-express.git",
"license": "MIT",
"devDependencies": {
"@types/express": "4.17.11",
"@types/faker": "5.1.5",
"@types/jest": "26.0.20",
"@types/node": "14.14.21",
"body-parser": "1.19.0",
"coveralls": "3.1.0",
"faker": "5.1.0",
"jest": "26.6.3",
"nodemon": "2.0.7",
"prettier": "2.2.1",
"supertest": "6.1.1",
"ts-jest": "26.4.4",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typescript": "4.1.3"
},
"dependencies": {
"@types/supertest": "^2.0.10",
"express": "4.17.1",
"tarant": "2.7.60",
"tslib": "2.1.0"
},
"jest": {
"preset": "ts-jest"
}
}