generated from justintaddei/npm-ts-template
-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
81 lines (81 loc) · 2.22 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
{
"name": "v-shared-element",
"version": "3.1.1",
"description": "Declarative shared-element transitions between pages for Vue.js and Nuxt.js",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"unpkg": "dist/iife/index.js",
"types": "dist/types/",
"files": [
"dist/**/*",
"nuxt/**/*"
],
"scripts": {
"test": "jest --no-cache",
"build": "rollup --config",
"dev": "npm run build -- --watch",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"release": "npm run lint && npm run format && npm run test && standard-version"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/justintaddei/v-shared-element.git"
},
"keywords": [
"vue",
"directive",
"page transition",
"shared",
"element",
"shared element",
"transition",
"nuxt",
"illusory"
],
"author": "Justin Taddei",
"license": "MIT",
"bugs": {
"url": "https://github.com/justintaddei/v-shared-element/issues"
},
"homepage": "https://github.com/justintaddei/v-shared-element#readme",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@types/jest": "^29.5.1",
"husky": "^9.0.6",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^3.0.0",
"rollup": "^4.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.0.4",
"vue-2": "npm:vue@^2.6.14",
"vue-3": "npm:vue@^3.1.3",
"vue-router-3": "npm:vue-router@^3.6.5",
"vue-router-4": "npm:vue-router@^4.1.6"
},
"dependencies": {
"illusory": "^2.0.3"
},
"peerDependencies": {
"vue": "^2.6.14 || ^3.1.3",
"vue-router": "^3.5.2 || ^4.0.10"
}
}