-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.31 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
{
"name": "ngx-mf",
"version": "5.2.0",
"description": "Bind your model types to angular FormGroup type",
"author": "Vladislav Lebedev <[email protected]>",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/iamguid/ngx-mf"
},
"bugs": {
"url": "https://github.com/iamguid/ngx-mf/issues"
},
"homepage": "https://github.com/iamguid/ngx-mf",
"keywords": [
"angular",
"forms",
"typed-forms",
"interface",
"model",
"binding"
],
"engines": {
"node": ">=18.19.1"
},
"type": "module",
"module": "./build/src/index.mjs",
"typings": "./build/src/index.d.mts",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./build/src/index.d.mts",
"default": "./build/src/index.mjs"
}
},
"scripts": {
"build": "tsc",
"test": "npm run build && NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" npx jest",
"pub": "npm run test && npm publish"
},
"devDependencies": {
"@angular/common": "^18.2.13",
"@angular/compiler": "^18.2.13",
"@angular/core": "^18.1.1",
"@angular/forms": "^18.2.13",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"typescript": "^5.7.2"
},
"peerDependencies": {
"@angular/forms": ">=14.0.0"
}
}