forked from isaacplmann/ngx-contextmenu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.32 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.32 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
71
72
73
74
75
76
{
"name": "@kreash/ngx-contextmenu-repository",
"version": "20.0.0",
"description": "An Angular component to show a context menu on an arbitrary component",
"keywords": [
"contextmenu",
"ngx-contextmenu",
"angular",
"angular-contextmenu",
"angular2",
"angular2-contextmenu",
"ngx",
"ng2",
"ng2-contextmenu"
],
"author": "Kreash <anton.kreash@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Kreash/ngx-contextmenu.git"
},
"main": "lib/index.js",
"module": "lib/index.js",
"jsnext:main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "npm run build:lib && npm run build:demo",
"build:demo": "ng build demo",
"build:lib": "ng build ngx-contextmenu && copyfiles README.md LICENSE dist/ngx-contextmenu/",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"pub": "npm run pub:lib && npm run pub:demo",
"pub:demo": "npm run build:demo -- --base-href /ngx-contextmenu/ && gh-pages -d dist/demo/browser",
"pub:lib": "npm run build:lib && npm publish ./dist/ngx-contextmenu",
"pack:lib": "npm run build:lib && cd dist/ngx-contextmenu && npm pack && copyfiles *.tgz ../../ && cd ../.."
},
"private": false,
"devDependencies": {
"@angular-devkit/build-angular": "20.3.9",
"@angular/cdk": "20.2.12",
"@angular/cli": "20.3.9",
"@angular/common": "20.3.10",
"@angular/compiler": "20.3.10",
"@angular/compiler-cli": "20.3.10",
"@angular/core": "20.3.10",
"@angular/forms": "20.3.10",
"@angular/platform-browser": "20.3.10",
"@angular/platform-browser-dynamic": "20.3.10",
"@angular/router": "20.3.10",
"@types/node": "14.6.0",
"codelyzer": "^6.0.0",
"copyfiles": "^2.3.0",
"gh-pages": "^6.1.1",
"jasmine-core": "~3.8.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-cli": "~2.0.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.7.0",
"ng-packagr": "^20.3.0",
"rxjs": "^6.6.2",
"ts-node": "~8.10.2",
"tslib": "^2.0.0",
"eslint": "^9.39.1",
"typescript": "~5.9.3",
"zone.js": "~0.15.0"
},
"dependencies": {
"tslib": "^2.6.3"
}
}