-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
105 lines (105 loc) · 3.28 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "ngx-form-object",
"version": "15.0.0",
"author": {
"name": "Mihael Safaric",
"email": "[email protected]"
},
"keywords": [
"angular"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/infinum/ngx-form-object/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/infinum/ngx-form-object"
},
"engines": {
"node": ">=22.0.0"
},
"files": [
"./dist/ngx-form-object/**/*"
],
"scripts": {
"ng": "ng",
"start:sample-app": "ng serve --project=ngx-form-object-sample-app",
"build": "ng build ngx-form-object && npm run copy-files",
"build:watch": "ng build --watch",
"test": "ng test --watch=false",
"test:lib": "ng test ngx-form-object --watch=false",
"test:lib:watch": "ng test ngx-form-object --watch=true",
"test:sample-app": "ng test ngx-form-object-sample-app --watch=false",
"test:sample-app:watch": "ng test ngx-form-object-sample-app --watch=true",
"lint": "npm run ts-check:lib && npm run ts-check:sample-app && ng lint",
"ts-check:lib": "tsc --noEmit -p projects/ngx-form-object/tsconfig.lib.json",
"ts-check:sample-app": "tsc --noEmit -p projects/ngx-form-object-sample-app/tsconfig.app.json",
"copy-license": "cp ./LICENSE ./dist/ngx-form-object",
"copy-readme": "cp ./README.md ./dist/ngx-form-object",
"copy-files": "npm run copy-license && npm run copy-readme",
"publish": "npm run test && npm run build && npm publish dist/ngx-form-object/",
"publish-beta": "npm run test && npm run build && npm publish dist/ngx-form-object/ --tag beta",
"prepare": "husky"
},
"dependencies": {
"@angular/common": "^19.0.6",
"@angular/compiler": "^19.0.6",
"@angular/core": "^19.0.6",
"@angular/forms": "^19.0.6",
"@angular/platform-browser": "^19.0.6",
"@angular/platform-browser-dynamic": "^19.0.6",
"rxjs": "~7.8.1",
"tslib": "^2.8.1",
"tsutils": "^3.21.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1900.7",
"@angular-devkit/build-angular": "^19.0.7",
"@angular-devkit/core": "^19.0.7",
"@angular-eslint/builder": "19.0.2",
"@angular-eslint/eslint-plugin": "19.0.2",
"@angular-eslint/eslint-plugin-template": "19.0.2",
"@angular-eslint/schematics": "19.0.2",
"@angular-eslint/template-parser": "19.0.2",
"@angular/cli": "^19.0.7",
"@angular/compiler-cli": "^19.0.6",
"@angular/language-service": "^19.0.6",
"@angular/router": "^19.0.6",
"@infinumjs/eslint-config-angular-ts": "^3.3.1",
"@types/jasmine": "^5.1.5",
"@types/jasminewd2": "~2.0.13",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"codelyzer": "^6.0.2",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-rxjs": "^5.0.3",
"husky": "^9.1.7",
"jasmine-core": "^5.5.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"lint-staged": "^15.3.0",
"ng-packagr": "^19.0.1",
"prettier": "^3.4.2",
"typescript": "~5.6.3"
},
"lint-staged": {
"**/*.{js,ts}": [
"prettier --write"
],
"**/*.component.html": [
"prettier --write"
],
"**/*.json": [
"prettier --write"
]
}
}