-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
69 lines (69 loc) · 2.24 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
{
"name": "@google/workflow-graph",
"version": "0.1.3",
"description": "Component for visualizing workflow graphs (directed-acyclic-graphs). Built with Angular, distributed as a Web Component. [WIP]",
"author": "Google LLC",
"private": false,
"repository": "https://github.com/google/workflow-graph",
"publishConfig": {
"registry": "https://wombat-dressing-room.appspot.com"
},
"main": "./lib/types.js",
"types": "./lib/types.d.ts",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"combine-sources": "cat dist/runtime.js dist/main.js > dist/registerWorkflowGraphWebComponent.js",
"build-web-component": "ng build angular --configuration production-web-component && npm run combine-sources && tsc --project tsconfig.types.json",
"test": "ng test"
},
"engines": {
"node": "^12.20.0 || ^14.15.0 || >=16.10.0",
"yarn": ">=1.9.2 <2.0.0"
},
"license": "Apache-2.0",
"devDependencies": {
"@angular-devkit/architect-cli": "0.1700.7",
"@angular-devkit/build-angular": "^17.0.7",
"@angular/cli": "~17.0.7",
"@angular/compiler": "^17.0.7",
"@angular/compiler-cli": "^17.0.7",
"@angular/localize": "^17.0.7",
"@types/dagre": "0.7.48",
"@types/jasmine": "~4.3.0",
"@types/lodash": "^4.14.196",
"@types/node": "18.11.9",
"@types/trusted-types": "2.0.2",
"core-js": "3.32.0",
"fs-extra": "^11.1.1",
"jasmine-core": "4.5.0",
"karma": "6.4.1",
"karma-chrome-launcher": "3.1.1",
"karma-coverage": "2.2.0",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.0.0",
"ng-packagr": "^17.0.2",
"terser": "^5.19.2",
"typescript": "5.2.2"
},
"dependencies": {
"@angular/animations": "^17.0.7",
"@angular/cdk": "^17.0.4",
"@angular/common": "^17.0.7",
"@angular/core": "^17.0.7",
"@angular/elements": "^17.0.7",
"@angular/forms": "^17.0.7",
"@angular/material": "^17.0.4",
"@angular/platform-browser": "^17.0.7",
"@angular/platform-browser-dynamic": "^17.0.7",
"dagre": "^0.8.5",
"lodash": "^4.17.21",
"rxjs": "7.5.7",
"safevalues": "^0.4.3",
"systemjs": "6.1.2",
"tslib": "2.4.1",
"zone.js": "~0.14.0"
}
}