-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
90 lines (90 loc) · 2.25 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
82
83
84
85
86
87
88
89
90
{
"name": "vue-mce",
"version": "1.5.3",
"description": "VueJS component for TinyMCE",
"main": "dist/vue-mce.common.js",
"types": "types/index.d.ts",
"unpkg": "dist/vue-mce.web.js",
"jsdelivr": "dist/vue-mce.web.js",
"engines": {
"node": ">=6.0.0"
},
"maintainers": [
{
"name": "Eazymov",
"email": "eazymovcode@gmail.com"
}
],
"scripts": {
"build": "yarn build:web && yarn build:common && yarn build:test",
"build:web": "webpack --config config/web.config.js",
"build:common": "webpack --config config/common.config.js",
"build:test": "webpack --config config/test.config.js",
"test": "yarn test:types && yarn test:unit && yarn test:e2e",
"test:types": "tsc -p test/types/tsconfig.json",
"test:unit": "babel-node test/unit/runner.js",
"test:e2e": "babel-node test/e2e/runner.js"
},
"registry": "github",
"repository": {
"type": "git",
"url": "git+https://github.com/Eazymov/vue-mce.git"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"keywords": [
"vuejs",
"vue",
"tinymce",
"component",
"eazymov",
"javascript"
],
"author": "Eduard Troshin <eazymovcode@gmail.com>",
"license": "MIT",
"readme": "",
"bugs": {
"url": "https://github.com/Eazymov/vue-mce/issues"
},
"homepage": "https://github.com/Eazymov/vue-mce#readme",
"files": [
"src",
"dist",
"types",
"LICENSE",
"README.md"
],
"devDependencies": {
"@babel/core": "7.4.5",
"@babel/node": "7.4.5",
"@babel/preset-env": "7.4.5",
"babel-loader": "8.0.6",
"chromedriver": "2.33.2",
"cross-spawn": "6.0.5",
"css-loader": "3.0.0",
"dotenv": "8.0.0",
"jasmine": "3.4.0",
"jasmine-spec-reporter": "4.2.1",
"lodash": "4.17.15",
"nightwatch": "1.1.0",
"node-sass": "4.12.0",
"sass-loader": "7.1.0",
"selenium-server": "3.141.59",
"selenium-standalone": "6.16.0",
"style-loader": "0.23.1",
"typescript": "3.5.2",
"vue": "2.6.10",
"vue-class-component": "7.1.0",
"vue-loader": "14.2.2",
"vue-template-compiler": "2.6.10",
"webpack": "4.35.0",
"webpack-cli": "3.3.5",
"webpack-merge": "4.2.1"
},
"peerDependencies": {
"vue": "^2.5.3"
}
}