-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.42 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
{
"name": "ng-tinymce",
"version": "1.0.2",
"description": "TinyMCE in an Angular 2 Directive for smoother configuration and change detection using ControlValueAccessor interface",
"main": "dist/bundles/ng-tinymce.umd.js",
"scripts": {
"cleanup": "rimraf dist/bundles dist/src dist/index.d.ts dist/index.js dist/index.js.map dist/LICENCE dist/README.md",
"bundling": "rollup -c",
"minify": "uglifyjs dist/bundles/ng-tinymce.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/ng-tinymce.umd.min.js",
"build": "npm run cleanup && ngc && npm run bundling && npm run minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mchlbrnd/ng-tinymce.git"
},
"keywords": [
"tinymce",
"angular2",
"angular",
"ng2",
"editor",
"wsiwyg"
],
"author": "Michael Wolbert",
"license": "MIT",
"bugs": {
"url": "https://github.com/mchlbrnd/ng-tinymce/issues"
},
"homepage": "https://github.com/mchlbrnd/ng-tinymce#readme",
"dependencies": {
"@angular/common": "^2.1.0",
"@angular/core": "^2.1.0",
"@angular/forms": "^2.1.0",
"reflect-metadata": "^0.1.3",
"rxjs": "^5.0.0",
"tinymce": "^4.5.0",
"zone.js": "^0.*"
},
"devDependencies": {
"@angular/compiler": "^2.1.0",
"@angular/compiler-cli": "^2.1.0",
"rimraf": "^2.5.4",
"rollup": "^0.37.0",
"typescript": "~2.0.10",
"uglify-js": "^2.7.5"
}
}