-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
86 lines (86 loc) · 3.08 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
77
78
79
80
81
82
83
84
85
86
{
"name": "ngx-cytoscapejs-workspace",
"version": "1.8.0",
"description": "Cytoscape.js Angular Wrapper",
"author": "https://github.com/9von10/ngx-cytoscapejs/graphs/contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/9von10/ngx-cytoscapejs.git"
},
"bugs": {
"url": "https://github.com/9von10/ngx-cytoscapejs/issues"
},
"homepage": "https://github.com/9von10/ngx-cytoscapejs#readme",
"keywords": [
"angular",
"cytoscape",
"cytoscapejs"
],
"scripts": {
"prepare": "husky",
"ng": "ng",
"start": "npm run lib:serve",
"lib:serve": "ng build ngx-cytoscapejs --watch",
"lib:build": "ng build ngx-cytoscapejs",
"lib:test": "jest --config ./projects/ngx-cytoscapejs/jest.config.js",
"demo:serve": "ng serve demo-app",
"demo:build": "ng build demo-app",
"demo:test": "jest --config ./projects/demo-app/jest.config.js",
"docs:serve": "compodoc --serve --watch",
"docs:build": "rm -rf docs && compodoc",
"build": "npm run lib:build && npm run demo:build",
"test": "npm run lib:test && npm run lib:build && npm run demo:test",
"lint": "ng lint",
"format": "npx pretty-quick",
"release": "commit-and-tag-version --no-verify",
"gh-pages:build": "npm run lib:build && npm run demo:build -- --base-href demo-app && npm run docs:build",
"gh-pages:copy": "cp -r dist/demo-app docs && cp docs/index.html docs/404.html && cp docs/demo-app/index.html docs/demo-app/404.html",
"gh-pages": "npm run gh-pages:build && npm run gh-pages:copy"
},
"dependencies": {
"@angular/animations": "^18.1.0",
"@angular/common": "^18.1.0",
"@angular/compiler": "^18.1.0",
"@angular/core": "^18.1.0",
"@angular/forms": "^18.1.0",
"@angular/platform-browser": "^18.1.0",
"@angular/platform-browser-dynamic": "^18.1.0",
"@angular/router": "^18.1.0",
"@js4cytoscape/cx-viz-converter": "^0.1.6",
"cytoscape": "^3.30.1",
"cytoscape-cx2js": "^0.6.6",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.1.3",
"@angular-eslint/builder": "18.1.0",
"@angular-eslint/eslint-plugin": "18.1.0",
"@angular-eslint/eslint-plugin-template": "18.1.0",
"@angular-eslint/template-parser": "18.1.0",
"@angular/cli": "^18.1.3",
"@angular/compiler-cli": "^18.1.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-angular": "^19.3.0",
"@compodoc/compodoc": "^1.1.25",
"@types/cytoscape": "^3.21.5",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "7.11.0",
"@typescript-eslint/parser": "7.11.0",
"commit-and-tag-version": "^12.4.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.1.4",
"jest": "^29.7.0",
"jest-preset-angular": "^14.2.2",
"ng-packagr": "^18.1.0",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"typescript": "~5.5.2"
}
}