This repository has been archived by the owner on Jan 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 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
63
{
"name": "@userfront/vue",
"version": "0.1.20",
"description": "Userfront Vue binding",
"source": "src/index.js",
"main": "build/userfront-vue.js",
"module": "build/userfront-vue.module.js",
"unpkg": "build/userfront-vue.umd.js",
"scripts": {
"test:vue-2": "VUE_VERSION=2 jest --silent=false",
"test:vue-3": "VUE_VERSION=3 jest --silent=false",
"test": "concurrently -g \"npm run test:vue-2\" \"npm run test:vue-3\"",
"test:watch": "jest --watch",
"build": "microbundle",
"pub": "npm version patch --force && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/userfront/userfront-vue.git"
},
"keywords": [
"userfront"
],
"author": "Userfront",
"bugs": {
"url": "https://github.com/userfront/userfront-vue/issues"
},
"homepage": "https://github.com/userfront/userfront-vue#readme",
"dependencies": {
"@anymod/core": "^0.1.51",
"@userfront/core": "^0.6.5",
"compare-versions": "^6.0.0-rc.1"
},
"peerDependencies": {
"vue": "^2.6.14 || ^3.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@vue/server-test-utils": "^1.2.1",
"@vue/test-utils": "^1.2.1",
"@vue/test-utils-3": "npm:@vue/test-utils@2.2.7",
"babel-jest": "^26.6.1",
"babel-loader": "^8.1.0",
"concurrently": "^7.6.0",
"es6-promise": "^4.2.8",
"flush-promises": "^1.0.2",
"jest": "^26.6.1",
"microbundle": "^0.15.1",
"nock": "^13.0.4",
"vue": "^2.6.14",
"vue-3": "npm:vue@^3.2.0",
"vue-template-compiler": "^2.6.14"
},
"overrides": {
"@vue/test-utils-3": {
"vue": "^3.2.0"
},
"@vue/test-utils": {
"vue": "^2.6.14"
}
}
}