forked from ngx-prism/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.23 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
{
"name": "@ngx-prism/core",
"version": "2.0.0",
"description": "Simple Angular 2+ Prism highlighter module.",
"author": "Angular Package <[email protected]> (http://ngx-prism.wwwwdev.io)",
"homepage": "https://github.com/ngx-prism/core#readme",
"main": "dist/bundle.umd.js",
"module": "dist/index.js",
"jsnext:main": "dist/index.js",
"typings": "dist/index.d.ts",
"contributors": [
"Angular Package <[email protected]>"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"demo": "cd demo && npm start",
"build": "./node_modules/.bin/ngc -p tsconfig.json",
"bundle": "rollup -c rollup.config.js --environment BUILD:production",
"bundle:dev": "rollup -c rollup.config.js --environment BUILD:development",
"clean": "rimraf ./dist ./node_modules",
"copyfiles:src": "cd src && copyfiles *.html **/*.html **/**/*.html ../dist",
"postbuild": "npm run copyfiles:src",
"prebuild": "npm install",
"prepare": "",
"start": "npm run build && npm run bundle",
"clean:start": "npm run clean && npm start",
"test": "./node_modules/karma/bin/karma start karma.conf.js ",
"tslint": "./node_modules/tslint/bin/tslint -p tsconfig.json --force --type-check"
},
"license": "MIT",
"dependencies": {
"@angular-package/change-detection": "^0.1.1"
},
"devDependencies": {
"@angular/common": "^5.1.1",
"@angular/compiler": "^5.1.1",
"@angular/compiler-cli": "^5.1.1",
"@angular/core": "^5.1.1",
"@angular/platform-browser": "^5.1.1",
"@angular/platform-browser-dynamic": "^5.1.1",
"@types/angular": "^1.6.39",
"@types/jasmine": "^2.8.2",
"@types/karma": "^1.7.2",
"@types/lodash-es": "^4.17.0",
"@types/node": "^8.5.1",
"@types/prismjs": "^1.9.0",
"clean-css": "^4.1.9",
"codelyzer": "^4.0.2",
"copyfiles": "^1.2.0",
"html-minifier": "^3.5.7",
"jasmine": "^2.8.0",
"jasmine-core": "^2.8.0",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-rollup-preprocessor": "^5.0.2",
"lodash-decorators": "^4.5.0",
"lodash-es": "^4.17.4",
"node-sass": "^4.7.2",
"prismjs": "^1.9.0",
"reflect-metadata": "^0.1.10",
"rimraf": "^2.6.2",
"rollup": "^0.52.2",
"rollup-plugin-angular": "^0.5.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-typescript": "^0.8.1",
"rollup-plugin-uglify": "^2.0.1",
"rxjs": "^5.5.5",
"tslint": "^5.8.0",
"typescript": "^2.6.2",
"uglify-es": "^3.2.2",
"zone.js": "^0.8.18"
},
"peerDependencies": {
"@types/prismjs": "^1.9.0",
"prismjs": "^1.9.0"
},
"keywords": [
"angular prismjs",
"angular 5 prismjs",
"angular prism highlighter",
"ngx prism highlighter",
"ngx-package",
"ngx-prism",
"ngx-prism/core",
"ng prism",
"ng prismjs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ngx-prism/core.git"
},
"bugs": {
"url": "https://github.com/ngx-prism/core/issues"
}
}