forked from tinymce/tinymce-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.1 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
{
"name": "@tinymce/tinymce-vue",
"version": "3.2.3",
"description": "Official TinyMCE Vue Component",
"private": false,
"repository": {
"url": "https://github.com/tinymce/tinymce-vue"
},
"main": "lib/cjs/main/ts/index.js",
"module": "lib/es2015/main/ts/index.js",
"scripts": {
"test": "bedrock-auto -b chrome-headless -f src/test/ts/**/*Test.ts",
"test-manual": "bedrock -f src/test/ts/**/*Test.ts",
"clean": "rimraf lib",
"lint": "tslint src/**/*.ts",
"build": "yarn run clean && yarn run lint && tsc -p ./tsconfig.es2015.json && tsc -p ./tsconfig.cjs.json && node rollup.build.js",
"prepare": "yarn run build",
"storybook": "start-storybook -p 9001 -c .storybook"
},
"keywords": [
"tinymce",
"vue",
"component"
],
"author": "Ephox Inc",
"license": "Apache-2.0",
"files": [
"lib/*/**",
"README.md",
"CHANGELOG.md",
"LICENSE.txt"
],
"peerDependencies": {
"vue": "^2.4.3"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@ephox/agar": "^4.13.10",
"@ephox/bedrock-client": "^9.3.2",
"@ephox/bedrock-server": "^9.3.2",
"@ephox/katamari": "^5.0.2",
"@ephox/sugar": "^5.1.3",
"@ephox/tslint-rules": "^1.0.11",
"@storybook/addon-notes": "^5.1.11",
"@storybook/storybook-deployer": "^2.8.1",
"@storybook/vue": "^5.1.11",
"@tinymce/miniature": "^2.2.0",
"@types/node": "^13.13.4",
"babel-loader": "^8.0.5",
"babel-preset-vue": "^2.0.2",
"babel-register": "^6.26.0",
"css-loader": "^3.5.3",
"file-loader": "^6.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rimraf": "^3.0.2",
"rollup": "^2.7.5",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.27.0",
"rollup-plugin-uglify": "^6.0.0",
"tinymce": "npm:tinymce@^5.0.0",
"tinymce-4": "npm:tinymce@^4.9.7",
"tinymce-5": "npm:tinymce@^5.0.0",
"ts-loader": "^7.0.1",
"ts-node": "^8.9.1",
"tslint": "^6.1.2",
"typescript": "^3.2.2",
"vue": "^2.6.10",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.43.0"
}
}