-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.39 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
{
"name": "@alchemy_cms/vue",
"version": "0.10.0",
"description": "AlchemyCMS mixins for VueJS",
"main": "dist/alchemy-vue.js",
"files": [
"dist"
],
"scripts": {
"test": "jest --forceExit --detectOpenHandles",
"build": "rollup --config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlchemyCMS/alchemy-vue.git"
},
"keywords": [
"VueJS",
"AlchemyCMS",
"cms",
"headless"
],
"author": "Thomas von Deyen",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/AlchemyCMS/alchemy-vue/issues"
},
"homepage": "https://github.com/AlchemyCMS/alchemy-vue#readme",
"peerDependencies": {
"vue": "^2.x"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@vue/test-utils": "^1.1.1",
"babel-jest": "^26.6.2",
"eslint": "^7.12.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-vue": "^7.1.0",
"jest": "^26.6.2",
"postcss": ">=6.0",
"prettier": "^2.1.2",
"rollup": "^2.33.1",
"rollup-plugin-vue": "^5.1.9",
"typescript": ">=3.8 <5.0",
"vue": "^2.6.12",
"vue-jest": "^4.0.0-rc.0",
"vue-template-compiler": "^2.6.12"
},
"jest": {
"moduleFileExtensions": [
"js",
"vue"
],
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.vue$": "vue-jest"
}
}
}