-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.09 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": "vue-trix-readonly",
"version": "0.0.1",
"description": "A Vue plugin for the fabulous Trix javascript editor from Basecamp with readonly capabilities",
"main": "./build/syn-vue-trix.common.js",
"module": "./build/syn-vue-trix.umd.js",
"unpkg": "./build/syn-vue-trix.umd.min.js",
"browser": {
"./sfc": "./src/components/SynVueTrix.vue"
},
"files": [
"example/*",
"dist/*",
"src/*",
"*.json",
"*.js"
],
"homepage": "https://github.com/synergixe/vue-trix",
"bugs": "https://github.com/synergixe/vue-trix/issues",
"repository": {
"type": "git",
"url": "https://github.com/synergixe/vue-trix.git"
},
"author": {
"name": "Ifeora Okechukwu",
"email": "[email protected]",
"url": "https://twitter.com/isocroft"
},
"license": "MIT",
"keywords": [
"vuejs2",
"vuejs",
"vue",
"trix",
"readonly",
"caption",
"synergixe"
],
"scripts": {
"build:umd": "vue-cli-service build --target lib --name syn-vue-trix ./src/index.js",
"lint": "vue-cli-service lint --fix",
"example:dev": "vue-cli-service serve ./example/main.js --open",
"test:unit": "./node_modules/.bin/jest",
"test": "vue-cli-service test:unit"
},
"dependencies": {
"vue-trix": "^0.8.3"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@vue/cli-plugin-babel": "^3.8.0",
"@vue/cli-plugin-eslint": "^3.8.0",
"@vue/cli-plugin-unit-jest": "^3.8.0",
"@vue/cli-service": "^3.8.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"css-loader": "^0.28.11",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"jest-serializer-vue": "^2.0.2",
"jest-transform-stub": "^2.0.0",
"style-loader": "^0.20.3",
"uglify-es": "^3.3.9",
"vue": "^2.6.10",
"vue-jest": "^3.0.4",
"vue-loader": "14.2.2",
"vue-template-compiler": "^2.6.10"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}