forked from ngx-formly/ngx-formly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.67 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
{
"name": "ng-formly",
"version": "1.0.0-rc.0",
"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",
"ngc": "./node_modules/.bin/ngc",
"lint": "./node_modules/.bin/tslint 'src/**/*.ts' 'demo/**/*.ts' --noUnusedParameters",
"commit": "npm run build && git-cz",
"prepublish": "npm run build",
"build": "npm run build:lib && npm run build:bundles",
"prebuild:lib": "shx rm -rf ./lib",
"build:lib": "npm run ngc -- --project tsconfig.build.json",
"prebuild:bundles": "shx rm -rf ./bundles",
"build:bundles": "npm run build:bundles:compile && npm run build:bundles:minify",
"build:bundles:compile": "./node_modules/.bin/webpack --config .config/webpack.build.js",
"build:bundles:minify": "uglifyjs bundles/ng-formly.umd.js --output bundles/ng-formly.umd.min.js --in-source-map bundles/ng-formly.umd.js.map --source-map bundles/ng-formly.umd.min.js.map",
"demo": "node_modules/.bin/webpack-dashboard --title ng-formly-demo -- node_modules/.bin/webpack-dev-server --quiet --port 9000 --content-base demo --config .config/webpack.demo.js --open",
"test": "./node_modules/.bin/karma start",
"test-watch": "./node_modules/.bin/karma start --no-single-run --auto-watch"
},
"keywords": [
"angular",
"forms",
"ng-formly",
"formly",
"angular 2",
"angular 2 forms",
"json forms",
"form library"
],
"license": "MIT",
"description": "ng-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": "^2.2.0"
},
"devDependencies": {
"@angular/common": "^2.3.1",
"@angular/compiler": "^2.3.1",
"@angular/compiler-cli": "^2.3.1",
"@angular/core": "^2.3.1",
"@angular/forms": "^2.3.1",
"@angular/platform-browser": "^2.3.1",
"@angular/platform-browser-dynamic": "^2.3.1",
"@types/jasmine": "^2.5.38",
"@types/node": "^6.0.52",
"angular2-template-loader": "^0.6.0",
"awesome-typescript-loader": "^3.0.0-beta.7",
"codecov": "^1.0.1",
"codelyzer": "2.0.0-beta.3",
"commitizen": "^2.9.0",
"core-js": "^2.4.1",
"cz-conventional-changelog": "^1.2.0",
"istanbul-instrumenter-loader": "^0.2.0",
"jasmine": "^2.5.2",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.1",
"karma-phantomjs-launcher": "^1.0.2",
"karma-remap-coverage": "^0.1.3",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "1.8.0",
"phantomjs-prebuilt": "^2.1.14",
"raw-loader": "^0.5.1",
"remap-istanbul": "^0.8.0",
"rxjs": "^5.0.1",
"shx": "^0.2.1",
"tslint": "^4.1.0",
"typescript": "2.0.10",
"uglify-js": "^2.7.5",
"webpack": "^1.14.0",
"webpack-dashboard": "^0.2.0",
"webpack-dev-server": "^1.16.2",
"zone.js": "^0.7.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}