forked from MurhafSousli/ngx-highlightjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.17 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.17 KB
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
{
"name": "@kensingtontech/ngx-highlightjs",
"version": "0.0.0",
"description": "Instant code highlighting, auto-detect language.",
"homepage": "https://github.com/KensingtonTech/ngx-highlightjs",
"author": {
"name": "Tim Underhay",
"url": "http://github.com/KensingtonTech"
},
"repository": {
"type": "git",
"url": "https://github.com/KensingtonTech/ngx-highlightjs.git"
},
"keywords": [
"angular",
"highlight",
"highlightjs",
"prism",
"syntax",
"code"
],
"license": "MIT",
"scripts": {
"ng": "ng",
"build": "ng build ngx-highlightjs --prod && cp README.md dist/ngx-highlightjs",
"buildtest": "npm run build && cd dist/ngx-highlightjs && npm pack . && cp *.tgz ~/src/amos-client",
"test": "ng test ngx-highlightjs",
"test-headless": "ng test ngx-highlightjs --watch=false --no-progress --browsers=ChromeHeadless",
"link": "npm link dist/ngx-highlightjs && npm link ngx-highlightjs",
"publish": "npm publish dist/ngx-highlightjs",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/common": "~13.1.3",
"@angular/compiler": "~13.1.3",
"@angular/core": "~13.1.3",
"@angular/platform-browser": "~13.1.3",
"@angular/platform-browser-dynamic": "~13.1.3",
"rxjs": "~6.5.4",
"tslib": "^2.2.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.1.4",
"@angular-devkit/core": "~13.1.4",
"@angular-devkit/schematics": "~13.1.4",
"@angular/cli": "~13.1.4",
"@angular/compiler-cli": "~13.1.3",
"@angular/language-service": "~13.1.3",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"highlight.js": "~11.4.0",
"highlightjs-line-numbers.js": "^2.8.0",
"jasmine-core": "~3.8.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^13.1.3",
"protractor": "~7.0.0",
"ts-node": "~7.0.0",
"tslint": "~6.1.0",
"typescript": "~4.5.5"
}
}