forked from jfcere/ngx-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.64 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "ngx-markdown",
"description": "Angular 2+ library that uses marked to parse markdown to html combined with Prism.js for synthax highlights",
"homepage": "https://github.com/jfcere/ngx-markdown",
"version": "1.5.2",
"license": "MIT",
"author": {
"name": "Jean-Francois Cere",
"email": "jfcere@sherweb.com"
},
"repository": {
"type": "git",
"url": "https://github.com/jfcere/ngx-markdown"
},
"keywords": [
"angular",
"angular2",
"angular-2",
"markdown",
"markdown-to-html",
"marked",
"ng2",
"ngx",
"parser",
"prism",
"prism.js"
],
"main": "./dist/lib/index.js",
"typings": "./dist/lib/index.d.ts",
"scripts": {
"build": "ng build",
"lint": "tslint \"src/**/*.ts\"",
"ng": "ng",
"start": "npm run clean:dist && ng serve",
"test": "ng test",
"coveralls": "cat \"./coverage/lcov.info\" | \"./node_modules/coveralls/bin/coveralls.js\"",
"build:gh-pages": "ng build --prod --base-href \"https://jfcere.github.io/ngx-markdown/\"",
"publish:gh-pages": "angular-cli-ghpages --message \"Publish gh-pages\"",
"prebuild:lib": "npm run clean:dist && npm run clean:inline-template && npm run clean:artifact",
"build:lib": "npm run inline-template && npm run transpile && npm run package && npm run minify",
"postbuild:lib": "npm run clean:inline-template && npm run clean:artifact",
"clean:artifact": "rimraf src/**/*.ngfactory.ts src/**/*.ngsummary.json src/**/*.ngstyle.ts",
"clean:dist": "rimraf dist",
"clean:inline-template": "rimraf **/inline-template",
"clean:package": "rimraf package *.tar *.tgz",
"inline-template": "gulp inline-template",
"transpile": "ngc -p src/tsconfig.lib.json",
"package": "rollup -c",
"minify": "uglifyjs dist/bundles/ngx-markdown.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/ngx-markdown.umd.min.js"
},
"private": false,
"dependencies": {
"@types/marked": "0.3.0",
"@types/prismjs": "^1.6.5",
"marked": "^0.3.9",
"prismjs": "^1.9.0"
},
"devDependencies": {
"@angular/cli": "1.0.0-rc.1",
"@angular/common": "^2.4.0",
"@angular/compiler": "^2.4.0",
"@angular/compiler-cli": "^2.4.0",
"@angular/core": "^2.4.0",
"@angular/forms": "^2.4.0",
"@angular/http": "^2.4.0",
"@angular/platform-browser": "^2.4.0",
"@angular/platform-browser-dynamic": "^2.4.0",
"@angular/router": "^3.4.0",
"@types/jasmine": "2.5.38",
"@types/jquery": "^3.2.12",
"@types/materialize-css": "~0.100.4",
"@types/node": "~6.0.60",
"angular-cli-ghpages": "^0.5.0",
"clean-css": "^4.0.10",
"codelyzer": "~2.0.0",
"core-js": "^2.4.1",
"coveralls": "^2.13.1",
"gulp": "^3.9.1",
"gulp-inline-ng2-template": "^4.0.0",
"html-minifier": "^3.4.2",
"jasmine-core": "~2.5.2",
"jasmine-spec-reporter": "~3.2.0",
"karma": "~1.4.1",
"karma-chrome-launcher": "~2.0.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^0.2.0",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-junit-reporter": "^1.2.0",
"materialize-css": "~0.100.2",
"node-sass": "^4.5.1",
"rimraf": "^2.6.1",
"rollup": "^0.52.1",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rxjs": "^5.1.0",
"ts-node": "~2.0.0",
"tslint": "~4.4.2",
"typescript": "^2.0.0",
"uglify-js": "^3.0.15",
"zone.js": "^0.7.6"
},
"peerDependencies": {
"@angular/core": "^2.4.0 || ^4.0.0 || ^5.0.0",
"@angular/http": "^2.4.0 || ^4.0.0 || ^5.0.0",
"core-js": "^2.4.1",
"rxjs": "^5.2.0",
"zone.js": "^0.7.6 || ^0.8.4"
}
}