forked from vamidi/visualne-context-menu-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.07 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
{
"name": "visualne-angular-context-menu-plugin",
"version": "1.0.10",
"description": "VisualNE plugin to render a context menu in the Angular framework",
"main": "index.js",
"scripts": {
"ng": "ng",
"build": "ng-packagr",
"build:dev": "ng-packagr --watch",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --fix --ext .ts",
"prebuild": "npm run lint",
"prepublishOnly": "npm run build",
"publish": "npm publish dist --access=public"
},
"keywords": [
"Angular",
"framework",
"node editor",
"context menu",
"visual programming"
],
"author": "Valencio Hoffman",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vamidi/visualne-context-menu-plugin.git"
},
"bugs": {
"url": "https://github.com/vamidi/visualne-context-menu-plugin/issues"
},
"homepage": "https://github.com/vamidi/visualne-context-menu-plugin#readme",
"peerDependencies": {
"@angular/common": ">=8.0.0 <9.0.0",
"@angular/core": ">=8.0.0 <9.0.0",
"@angular/elements": ">=8.0.0 <9.0.0",
"@angular/cdk": ">= 10.0.0",
"visualne": ">=1.0.0",
"rxjs": ">=6.4.0",
"tslib": ">=2.0.0",
"zone.js": ">=0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.800.6",
"@angular-devkit/build-ng-packagr": "0.800.6",
"@angular/cdk": "^9.2.4",
"@angular/cli": "^8.3.29",
"@angular/common": ">=8.0.0 <9.0.0",
"@angular/compiler": "8.2.14",
"@angular/compiler-cli": "^8.0.0",
"@angular/core": ">=8.0.0 <9.0.0",
"@angular/elements": ">=8.0.0 <9.0.0",
"@angular/language-service": "~8.0.0",
"@types/node": "~8.9.4",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"eslint": "^7.14.0",
"ng-packagr": "^5.1.0",
"rxjs": ">=6.4.0",
"ts-node": "~8.0.0",
"tsickle": "^0.35.0",
"tslib": "2.0.3",
"tslint": "~5.15.0",
"typescript": "3.5.3",
"visualne": "^1.0.8",
"zone.js": ">=0.9.1"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"lodash.isfunction": "^3.0.9"
}
}