-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.03 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
70
71
72
73
74
{
"name": "tarant-utils",
"version": "1.0.0",
"description": "utils for the tarant library",
"source": "lib/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"contributors": [
"Kevin Mas Ruiz <[email protected]>",
"Kanekotic <[email protected]>"
],
"repository": "[email protected]:tarantx/tarant-utils.git",
"license": "MIT",
"keywords": [
"actor system",
"actor",
"DDD",
"actor-system",
"tarant"
],
"scripts": {
"prepare": "husky install && parcel build",
"format": "prettier --write \"**/*.ts\" && eslint --fix lib/**/*.ts",
"lint": "eslint",
"test": "npm run format && npm run lint && jest test",
"test:dev": "jest --watchAll test",
"test:cov": "npm run format && npm run lint && jest --coverage",
"push": "npm run test && git push",
"deploy:major": "npm version --major",
"deploy:minor": "npm version --minor",
"deploy:patch": "npm version --patch",
"deploy:push": "git push && git push --tags",
"preversion": "npm run test",
"lint-staged": "lint-staged",
"commit": "git add . && cz"
},
"devDependencies": {
"@parcel/packager-ts": "2.8.3",
"@parcel/transformer-typescript-types": "2.8.3",
"@types/jest": "29.5.0",
"@types/node": "18.15.10",
"@typescript-eslint/eslint-plugin": "5.57.0",
"@typescript-eslint/parser": "5.57.0",
"commitizen": "4.2.5",
"cz-conventional-changelog": "3.3.0",
"cz-format-extension": "1.5.1",
"eslint": "8.36.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"husky": "8.0.3",
"jest": "29.5.0",
"lint-staged": "13.2.0",
"parcel": "2.8.3",
"prettier": "2.8.7",
"ts-jest": "29.0.5",
"typescript": "5.0.2"
},
"peerDependencies": {
"tarant": "3.x"
},
"jest": {
"preset": "ts-jest",
"collectCoverageFrom": [
"lib/**/*.{ts,tsx}"
]
},
"config": {
"commitizen": {
"path": "cz-format-extension"
}
}
}