forked from ngx-formly/ngx-formly
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 4.63 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 4.63 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
129
130
131
132
{
"name": "@ngx-formly/common",
"version": "2.0.0-rc.49",
"author": "Zama Khan Mohammed <mohammedzamakhan@gmail.com>",
"contributors": [
"Zama Khan Mohammed <mohammedzamakhan@gmail.com>",
"Kent C. Dodds <kent@doddsfamily.us>"
],
"scripts": {
"contrib:add": "all-contributors add",
"contrib:generate": "all-contributors generate",
"lint": "tslint -p tsconfig.json",
"lint:fix": "tslint --fix -p tsconfig.json",
"postinstall": "patch --forward node_modules/ng-packagr/lib/steps/ngc.js .config/ng-packagr.patch || true",
"commit": "npm run build && git-cz",
"prepublish": "npm run build",
"bundlesize": "bundlesize",
"build": "npm run build:core && npm run build:bootstrap && npm run build:material && node .config/build.js",
"build:core": "ng-packagr -p src/core/ng-package.json",
"build:bootstrap": "ng-packagr -p src/ui-bootstrap/ng-package.json",
"build:material": "ng-packagr -p src/ui-material/ng-package.json",
"release": "standard-version --prerelease rc && npm run build && node .config/publish.js",
"start": "ng serve --port 4100 --open",
"demo": "npm run start",
"build:docs": "compodoc -p tsconfig.doc.json -n 'Angular Formly' --hideGenerator --disableCoverage --disablePrivate --disableProtected --disableInternal --disableLifeCycleHooks --customFavicon='demo/src/favicon.ico' -d ./dist/app/docs",
"build:demo": "ng build --prod --no-aot --base-href=\"/ngx-formly/\"",
"gh-pages": "npm run build:demo && npm run build:docs && ngh --dir dist/app --repo=https://GH_TOKEN@github.com/formly-js/ngx-formly.git",
"test": "karma start",
"test:watch": "karma start --no-single-run --auto-watch"
},
"keywords": [
"angular",
"forms",
"ng-formly",
"ngx-formly",
"formly",
"angular 2",
"angular 2 forms",
"json forms",
"form library"
],
"license": "MIT",
"description": "@ngx-formly i@angular/animationss an Angular 2 module which has a Components to help customize and render JavaScript/JSON configured forms. The formly-form Component and the FormlyConfig service are very powerful and bring unmatched maintainability to your application's forms.",
"repository": {
"type": "git",
"url": "git+https://github.com/formly-js/ngx-formly.git"
},
"bugs": {
"url": "https://github.com/formly-js/ngx-formly/issues"
},
"homepage": "https://github.com/formly-js/ngx-formly#readme",
"peerDependencies": {
"@angular/forms": ">=4.0.0"
},
"dependencies": {
"tslib": "^1.7.1"
},
"devDependencies": {
"@angular/animations": "4.4.6",
"@angular/cdk": "2.0.0-beta.12",
"@angular/cli": "^1.5.4",
"@angular/common": "4.4.6",
"@angular/compiler": "4.4.6",
"@angular/compiler-cli": "4.4.6",
"@angular/core": "4.4.6",
"@angular/forms": "4.4.6",
"@angular/http": "4.4.6",
"@angular/material": "2.0.0-beta.12",
"@angular/platform-browser": "4.4.6",
"@angular/platform-browser-dynamic": "4.4.6",
"@angular/router": "4.4.6",
"@compodoc/compodoc": "^1.0.5",
"@ngx-loading-bar/router": "^1.0.0-rc.3",
"@types/jasmine": "2.6.0",
"@types/node": "^7.0.22",
"angular-cli-ghpages": "^0.5.2",
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "^3.4.0",
"bootstrap": "^4.0.0",
"bundlesize": "^0.15.3",
"codecov": "^3.0.0",
"codelyzer": "^4.0.1",
"commitizen": "^2.9.6",
"core-js": "^2.5.1",
"cz-conventional-changelog": "^2.1.0",
"istanbul-instrumenter-loader": "^3.0.0",
"jasmine": "^2.8.0",
"json-formatter-js": "^2.2.0",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.4",
"karma-remap-coverage": "^0.1.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.6",
"lodash.clonedeep": "^4.5.0",
"markdown-loader": "^2.0.1",
"ng-packagr": "^1.5.0",
"ng-snippets-loader": "^0.2.5",
"prism-hightlight-loader": "^0.1.1",
"prismjs-loader": "^0.0.4",
"raw-loader": "^0.5.1",
"remap-istanbul": "^0.9.5",
"rxjs": "^5.5.2",
"shx": "^0.2.2",
"standard-version": "^4.2.0",
"tslint": "^5.8.0",
"typescript": "^2.5.3",
"webpack": "^3.8.1",
"zone.js": "^0.8.18"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"bundlesize": [
{
"path": "./dist/core/@ngx-formly/core.es5.js",
"maxSize": "15 kB"
},
{
"path": "./dist/bootstrap/@ngx-formly/bootstrap.es5.js",
"maxSize": "5 kB"
},
{
"path": "./dist/material/@ngx-formly/material.es5.js",
"maxSize": "5 kB"
}
]
}