This repository was archived by the owner on Apr 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 4.08 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 4.08 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@webdev-tools/ng-nested-reactive-forms",
"version": "7.0.1",
"scripts": {
"ng": "ng",
"start": "ng serve samples --progress true",
"build": "ng build --prod",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"lib:build": "ng build ng-nrforms --prod",
"postlib:build": "copyfiles README.md LICENSE dist/ng-nrforms",
"lib:publish": "cd dist/ng-nrforms && npm publish --access public",
"lib:test": "ng test ng-nrforms --source-map false",
"lib:test-watch": "ng test ng-nrforms --watch --browsers Chromium --source-map false --progress true --code-coverage false",
"lib:lint": "ng lint ng-nrforms",
"sync-lib-version": "node scripts/sync-package-data.js",
"preversion": "npm run lib:lint && npm run lib:test",
"version": "npm run sync-lib-version && npm run lib:build && conventional-changelog -i CHANGELOG.md -s && git add .",
"postversion": "npm run lib:publish && git push --follow-tags --no-verify",
"codecov": "codecov --token=$CODECOV_TOKEN",
"commit": "git-cz"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "validate-commit-msg",
"pre-push": "npm run lib:build"
}
},
"lint-staged": {
"src/**/*.ts": [
"tslint --config src/tslint.json --fix",
"git add"
],
"projects/ng-nrforms/**/*.ts": [
"tslint --config projects/ng-nrforms/tslint.json --fix",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": "conventional-commit-types",
"helpMessage": "Use \"npm run commit\" instead, we use conventional-changelog format :) (https://github.com/commitizen/cz-cli)"
}
},
"private": true,
"dependencies": {
"@angular/animations": "7.0.4",
"@angular/cdk": "^7.0.4",
"@angular/common": "7.0.4",
"@angular/compiler": "7.0.4",
"@angular/core": "7.0.4",
"@angular/flex-layout": "^7.0.0-beta.19",
"@angular/forms": "7.0.4",
"@angular/http": "7.0.4",
"@angular/material": "^7.0.4",
"@angular/platform-browser": "7.0.4",
"@angular/platform-browser-dynamic": "7.0.4",
"@angular/platform-server": "7.0.4",
"@angular/router": "7.0.4",
"core-js": "^2.5.7",
"material-design-icons-iconfont": "^3.0.3",
"rxjs": "^6.3.3",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.10.6",
"@angular-devkit/build-ng-packagr": "~0.10.6",
"@angular/cli": "7.0.6",
"@angular/compiler-cli": "7.0.4",
"@angular/language-service": "7.0.4",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~10.12.9",
"@types/prismjs": "^1.9.0",
"@webdev-tools/tslint-airbnb-styleguide": "^1.1.1",
"codelyzer": "~4.4.2",
"commitizen": "^2.10.1",
"conventional-changelog-cli": "^1.3.22",
"copyfiles": "^2.0.0",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.1.4",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^3.1.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^1.4.3",
"karma-jasmine": "~1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"lint-staged": "^7.1.2",
"ng-packagr": "^4.4.0",
"prismjs": "^1.15.0",
"prompt": "^1.0.0",
"protractor": "^5.4.1",
"puppeteer": "1.4.0",
"ts-node": "~5.0.1",
"tsickle": "^0.34.0",
"tslib": "^1.9.3",
"tslint": "~5.11.0",
"tslint-config-prettier": "^1.16.0",
"typescript": "3.1.6",
"validate-commit-msg": "^2.14.0"
},
"author": "webdev-tools",
"license": "Apache-2.0",
"description": "Implement Nested FormControl for Angular Reactive Forms.",
"repository": {
"type": "git",
"url": "git+https://github.com/webdev-tools/ng-nested-reactive-forms.git"
},
"bugs": {
"url": "https://github.com/webdev-tools/ng-nested-reactive-forms/issues"
},
"homepage": "https://github.com/webdev-tools/ng-nested-reactive-forms#readme",
"browserslist": [
"> 2%",
"IE 11"
],
"keywords": [
"Angular",
"Forms",
"Reactive"
]
}