forked from MrWolfZ/ngrx-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.82 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.82 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
80
81
82
83
84
85
86
87
88
89
90
{
"$schema": "./node_modules/ng-packagr/package.schema.json",
"name": "ngrx-forms",
"version": "6.1.0",
"description": "Proper integration of forms in Angular 4 applications using ngrx",
"module": "ngrx/forms.es5.js",
"es2015": "ngrx/forms.js",
"main": "bundles/forms.umd.js",
"scripts": {
"build": "ng-packagr -p package.json -c tsconfig.json && rimraf ./dist/example-app ./dist/types",
"test": "karma start",
"test-headless": "karma start --browsers ChromeHeadless",
"test-no-progress": "karma start --reporters spec,karma-typescript",
"test-watch": "karma start --single-run=false",
"test-watch-headless": "karma start --single-run=false --browsers ChromeHeadless",
"lint": "tslint --project .",
"dtslint": "dtslint types",
"pack-lib": "npm pack ./dist",
"publish-lib": "npm publish ./dist",
"publish-lib:next": "npm publish ./dist --tag next",
"report-coverage": "codecov ./coverage/lcov/lcov.info",
"example-install": "npm run build && npm pack ./dist && cd example-app && cross-var npm install ../ngrx-forms-$npm_package_version.tgz && cd .."
},
"typings": "./index.d.ts",
"ngPackage": {
"lib": {
"entryFile": "public_api.ts",
"umdModuleIds": {
"@ngrx/store": "ngrx.store"
}
}
},
"author": "Jonathan Ziller <jonathan.ziller@gmail.com> (https://github.com/MrWolfZ)",
"repository": {
"type": "git",
"url": "https://github.com/MrWolfZ/ngrx-forms.git"
},
"bugs": {
"url": "https://github.com/MrWolfZ/ngrx-forms/issues"
},
"homepage": "https://github.com/MrWolfZ/ngrx-forms",
"keywords": [
"angular",
"javascript",
"typescript",
"ngrx",
"redux"
],
"license": "MIT",
"peerDependencies": {
"@angular/core": ">=8.0.0",
"@angular/common": ">=8.0.0",
"@angular/forms": ">=8.0.0",
"@ngrx/store": ">=7.0.0",
"typescript": ">=3.4.0"
},
"devDependencies": {
"@angular/common": "8.0.0",
"@angular/compiler": "8.0.0",
"@angular/compiler-cli": "8.0.0",
"@angular/core": "8.0.0",
"@angular/forms": "8.0.0",
"@angular/platform-browser": "8.0.0",
"@angular/platform-browser-dynamic": "8.0.0",
"@ngrx/store": "8.0.1",
"@types/jasmine": "2.8.6",
"@types/node": "10.12.18",
"codecov": "3.1.0",
"codelyzer": "5.0.1",
"core-js": "2.6.1",
"cross-var": "^1.1.0",
"dtslint": "0.7.7",
"jasmine-core": "2.6.4",
"karma": "2.0.4",
"karma-chrome-launcher": "2.2.0",
"karma-jasmine": "1.1.1",
"karma-spec-reporter": "0.0.32",
"karma-typescript": "4.0.0",
"karma-typescript-es6-transform": "4.0.0",
"ng-packagr": "5.2.0",
"reflect-metadata": "0.1.12",
"rimraf": "2.6.3",
"rxjs": "6.5.2",
"tsickle": "0.35.0",
"tslint": "5.16.0",
"tslint-eslint-rules": "5.4.0",
"typescript": "3.4.5",
"zone.js": "0.9.1"
}
}