-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
76 lines (76 loc) · 2.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
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": "ngx-contextmenu-platform",
"version": "6.0.0",
"description": "An Angular component to show a context menu on an arbitrary component",
"keywords": [
"angular2",
"contextmenu",
"angular2-contextmenu",
"ngx-contextmenu",
"ngx",
"ng2",
"ng2-contextmenu"
],
"author": "Isaac Mann <isaacplmann@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/isaacplmann/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": "rimraf dist/demo && ng build",
"build:lib": "ng build ngx-contextmenu --prod && 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",
"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 ../.. && rimraf dist/ngx-contextmenu/*.tgz"
},
"private": false,
"devDependencies": {
"@angular-devkit/build-angular": "^12.0.5",
"@angular/cdk": "^12.0.5",
"@angular/cli": "^12.0.5",
"@angular/common": "^12.0.5",
"@angular/compiler": "^12.0.5",
"@angular/compiler-cli": "^12.0.5",
"@angular/core": "^12.0.5",
"@angular/platform-browser": "^12.0.5",
"@angular/platform-browser-dynamic": "12.0.5",
"@angular/router": "^12.0.5",
"@types/node": "~14.6.0",
"classlist.js": "^1.1.20150312",
"codelyzer": "^6.0.0",
"copyfiles": "^2.3.0",
"gh-pages": "^3.1.0",
"jasmine-core": "~3.6.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.5.0",
"ng-packagr": "^12.0.5",
"protractor": "^7.0.0",
"rimraf": "^3.0.2",
"rxjs": "^6.6.2",
"ts-node": "~8.10.2",
"tsickle": "^0.39.1",
"tslib": "^2.0.0",
"tslint": "~6.1.3",
"typescript": "~4.2.4",
"web-animations-js": "^2.3.2",
"zone.js": "~0.11.4"
},
"dependencies": {}
}