-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.46 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.46 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "angular-odata",
"version": "0.144.2",
"license": "MIT",
"description": "Client side OData typescript library for Angular",
"repository": {
"type": "git",
"url": "git+https://github.com/diegomvh/angular-odata.git"
},
"keywords": [
"client",
"odata",
"odata v4",
"odata v3",
"odata v2",
"typescript",
"api",
"@angular",
"angular"
],
"author": "Diego van Haaster",
"bugs": {
"url": "https://github.com/diegomvh/angular-odata/issues"
},
"homepage": "https://github.com/diegomvh/angular-odata",
"private": true,
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build angular-odata --configuration production",
"schematics": "cd projects/angular-odata && npm run build && npm run postbuild",
"link": "npm link angular-odata",
"test": "ng test --watch=false",
"watch": "ng build --watch --configuration development",
"docs": "compodoc -p projects/angular-odata/tsconfig.lib.json -d docs/api --disableGraph --disableCoverage",
"versioning": "npm version 0.144.2 --allow-same-version && cd projects/angular-odata && npm version 0.144.2 --allow-same-version && cd ../..",
"publish": "npm run build && npm run schematics && npm publish dist/angular-odata/",
"release": "cp README.md projects/angular-odata/README.md && npm run docs && npm run publish",
"trippin": "ng generate angular-odata:apigen --name=TripPin --metadata='https://services.odata.org/V4/TripPinServiceRW/$metadata'",
"prettier": "prettier --write \"projects/angular-odata/**/*.ts\""
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
},
"packageManager": "npm@11.6.2",
"dependencies": {
"@angular/common": "^21.0.0",
"@angular/compiler": "^21.0.0",
"@angular/core": "^21.0.0",
"@angular/forms": "^21.0.0",
"@angular/platform-browser": "^21.0.0",
"@angular/router": "^21.0.0",
"@schematics/angular": "^21.0.3",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular/build": "^21.0.3",
"@angular/cli": "^21.0.3",
"@angular/compiler-cli": "^21.0.0",
"@compodoc/compodoc": "^1.1.32",
"@types/jsdom": "^27.0.0",
"@types/json-schema": "^7.0.15",
"jsdom": "^27.3.0",
"ng-packagr": "^21.0.0",
"prettier": "^3.7.4",
"typescript": "~5.9.2",
"vitest": "^4.0.15"
}
}