forked from ngx-formly/ngx-formly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.58 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-formly/common",
"version": "2.0.0-beta.2",
"author": "Zama Khan Mohammed <[email protected]>",
"contributors": [
"Zama Khan Mohammed <[email protected]>",
"Kent C. Dodds <[email protected]>"
],
"main": "bundles/ng-formly.umd.js",
"module": "lib/src/index.js",
"typings": "lib/src/index.d.ts",
"scripts": {
"contrib:add": "all-contributors add",
"contrib:generate": "all-contributors generate",
"lint": "tslint 'src/**/*.ts' 'demo/**/*.ts'",
"lint-fix": "tslint --fix 'src/**/*.ts' 'app/**/*.ts' --type-check -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",
"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 beta && npm run build && node .config/publish.js",
"demo": "ng serve --port 4100 --open",
"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 is 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/ng-formly.git"
},
"bugs": {
"url": "https://github.com/formly-js/ng-formly/issues"
},
"homepage": "https://github.com/formly-js/ng-formly#readme",
"peerDependencies": {
"@angular/forms": ">=4.0.0"
},
"dependencies": {
"tslib": "^1.7.1"
},
"devDependencies": {
"@angular/animations": "4.4.6",
"@angular/cdk": "^5.0.0-rc0",
"@angular/cli": "^1.5.0",
"@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": "^5.0.0-rc0",
"@angular/platform-browser": "4.4.6",
"@angular/platform-browser-dynamic": "4.4.6",
"@types/jasmine": "2.6.0",
"@types/node": "^7.0.22",
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "^3.2.3",
"codecov": "^2.3.0",
"codelyzer": "^3.2.1",
"commitizen": "^2.9.6",
"core-js": "^2.5.1",
"cz-conventional-changelog": "^2.0.0",
"istanbul-instrumenter-loader": "^3.0.0",
"jasmine": "^2.8.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.5",
"lodash.clonedeep": "^4.5.0",
"ng-packagr": "^1.3.0",
"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.7.0",
"typescript": "^2.5.3",
"webpack": "^3.8.1",
"zone.js": "^0.8.18"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}