-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.13 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.13 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
{
"name": "ngx-json-treeview",
"description": "Display object data in an expandable JSON tree view.",
"version": "21.2.1",
"license": "Apache-2.0",
"author": {
"name": "Michael J Doyle",
"email": "michael.james.doyle@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/MichaelDoyle/ngx-json-treeview"
},
"keywords": [
"angular",
"ngx",
"json",
"tree",
"treeview"
],
"scripts": {
"build": "pnpm run build:lib && pnpm run build:demo",
"build:lib": "ng build ngx-json-treeview",
"postbuild:lib": "cpy ./README.md ./dist/ngx-json-treeview && cpy ./LICENSE ./dist/ngx-json-treeview",
"build:demo": "ng build demo",
"format:check": "prettier . --check",
"format": "prettier . --write",
"ng": "ng",
"start": "ng serve",
"start:demo": "pnpm run build && pnpm run start",
"test": "ng test",
"watch": "ng build --watch --configuration development",
"publish:lib": "pnpm publish ./dist/ngx-json-treeview"
},
"private": true,
"dependencies": {
"@angular/cdk": "^21.2.4",
"@angular/common": "^21.2.6",
"@angular/compiler": "^21.2.6",
"@angular/core": "^21.2.6",
"@angular/forms": "^21.2.6",
"@angular/material": "^21.2.4",
"@angular/platform-browser": "^21.2.6",
"@angular/platform-browser-dynamic": "^21.2.6",
"@angular/router": "^21.2.6",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular/build": "^21.2.5",
"@angular/cli": "^21.2.5",
"@angular/compiler-cli": "^21.2.6",
"@types/jasmine": "~5.1.15",
"cpy-cli": "^7.0.0",
"jasmine-core": "~5.13.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.2.0",
"ng-packagr": "^21.2.2",
"prettier": "^3.8.1",
"prettier-plugin-css-order": "^2.2.0",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "~5.9.3"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
}