-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.7 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
{
"name": "tarant-vue",
"version": "2.0.1",
"description": "vue renderer materializer for the tarant framework",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"contributors": [
"Kevin Mas Ruiz <[email protected]>",
"Kanekotic <[email protected]>"
],
"repository": "[email protected]:tarantx/tarant-vue.git",
"license": "MIT",
"keywords": [
"actor system",
"actor",
"DDD",
"actor-system",
"vue"
],
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"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"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@types/faker": "6.6.9",
"@types/jest": "29.5.2",
"@types/node": "20.4.1",
"@types/vue": "2.0.0",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "5.61.0",
"coveralls": "3.1.1",
"esbuild": "0.18.11",
"eslint": "8.44.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"jest": "29.6.1",
"prettier": "3.0.0",
"ts-jest": "29.1.1",
"typescript": "^5.1.6"
},
"dependencies": {
"tarant": "3.1.46",
"vue": "3.3.4"
},
"jest": {
"preset": "ts-jest"
}
}