-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
79 lines (79 loc) · 1.87 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
{
"name": "vue-tweezing",
"version": "0.1.6",
"description": "Automatic tweening values nicely served in scoped slots",
"main": "dist/vue-tweezing.cjs.js",
"author": {
"name": "Eduardo San Martin Morote",
"email": "posva13@gmail.com"
},
"scripts": {
"lint": "eslint --color --ext=js,html src test example docs",
"unit": "jest",
"dev": "npm run unit -- --watchAll",
"test": "npm run lint && npm run unit",
"prepublishOnly": "rollit"
},
"files": [
"src",
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"vue",
"tween",
"tweening",
"tween.js",
"js",
"shift",
"shifter",
"change",
"animation"
],
"license": "MIT",
"devDependencies": {
"@tweenjs/tween.js": "^17.4.0",
"@vue/test-utils": "^1.0.0-beta.25",
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"codecov": "^3.5.0",
"eslint": "^5.16.0",
"eslint-config-posva": "^2.0.3",
"jest": "^23.6.0",
"shifty": "^2.8.0",
"tweezer.js": "^1.5.0",
"vue": "^2.6.10",
"vue-jest": "^3.0.4",
"vue-template-compiler": "^2.6.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/posva/vue-tweezing.git"
},
"bugs": {
"url": "https://github.com/posva/vue-tweezing/issues"
},
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"coveragePathIgnorePatterns": [
"<rootDir>/test/*.js",
"<rootDir>/test/utils/Helper.vue",
"<rootDir>/test/.*.js",
"<rootDir>/test/*/*.js"
]
},
"homepage": "https://github.com/posva/vue-tweezing#readme",
"module": "dist/vue-tweezing.es.js",
"unpkg": "dist/vue-tweezing.js",
"browser": "dist/vue-tweezing.js"
}