-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.26 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
75
76
77
78
79
80
81
82
{
"name": "tarant-local-storage",
"version": "1.2.2",
"description": "local storage resolver and materializer for offline applications",
"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-local-storage.git",
"license": "MIT",
"keywords": [
"tarant",
"actor system",
"actor",
"DDD",
"actor-system",
"local storage",
"resolver"
],
"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 test",
"lint-staged": "lint-staged",
"commit": "git add . && cz"
},
"devDependencies": {
"@faker-js/faker": "7.6.0",
"@parcel/packager-ts": "2.8.3",
"@parcel/transformer-typescript-types": "2.8.3",
"@types/faker": "6.6.9",
"@types/jest": "29.5.0",
"@types/node": "18.15.3",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.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.1",
"jest": "29.2.0",
"jest-localstorage-mock": "2.4.22",
"lint-staged": "13.2.0",
"parcel": "2.8.3",
"prettier": "2.7.1",
"ts-jest": "29.0.5",
"typescript": "5.0.2"
},
"peerDependencies": {
"tarant": "3.x"
},
"jest": {
"preset": "ts-jest",
"collectCoverageFrom": [
"lib/**/*.{ts,tsx}"
],
"setupFiles": [
"jest-localstorage-mock"
]
},
"config": {
"commitizen": {
"path": "cz-format-extension"
}
}
}