-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"version": "1.0.1",
"name": "entreacte",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "Create fancy enter/leave animations in page elements, when switching between vue-router views.",
"files": [
"dist"
],
"scripts": {
"test": "jest --env=jsdom --watchAll",
"build": "jest && tsc && cp -R ./src/animations ./dist/animations",
"prepare": "npm run build"
},
"keywords": [
"vue",
"transition",
"animation",
"router",
"vue-router",
"entreacte"
],
"author": "Marc Vilella <mvilella@obsa.ad> (https://github.com/markusand)",
"repository": {
"type": "git",
"url": "git+https://github.com/markusand/entreacte.git"
},
"bugs": {
"url": "https://github.com/markusand/entreacte/issues"
},
"homepage": "https://github.com/markusand/entreacte",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.12",
"eslint-config-markusand": "^1.0.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"peerDependencies": {
"vue": "^3.0.0",
"vue-router": "^4.0.0"
}
}