-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.04 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
{
"name": "@ngx-form/element",
"version": "2.0.13",
"description": "Angular 2+ component to dynamically create html form element.",
"author": "Ścibor Rudnicki <scibor.rudnicki@wwwdev.io> (http://ngx-form.wwwwdev.io)",
"homepage": "https://github.com/ngx-form/element#readme",
"main": "dist/bundle.umd.js",
"module": "dist/index.js",
"jsnext:main": "dist/index.js",
"typings": "dist/index.d.ts",
"contributors": [
"Ścibor Rudnicki <scibor.rudnicki@wwwdev.io>"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"clean": "rimraf ./dist ./node_modules",
"bundle": "rollup -c rollup.config.js",
"prebuild": "npm install",
"build": "./node_modules/.bin/ngc -p tsconfig.json",
"postbuild": "npm run html",
"prepublish": "",
"start": "npm run build && npm run bundle",
"start:clean": "npm run clean && npm start",
"html": "cd src && copyfiles **/*.html *.html *.scss **/*.scss ./../dist",
"test": "./node_modules/karma/bin/karma start karma.conf.js"
},
"license": "MIT",
"dependencies": {
"@ngx-core/common": "^1.1.2",
"@ngx-form/type": "^0.1.6"
},
"devDependencies": {
"@angular/animations": "^4.4.0-RC.0",
"@angular/cdk": "^2.0.0-beta.10",
"@angular/common": "^4.4.0-RC.0",
"@angular/compiler": "^4.4.0-RC.0",
"@angular/compiler-cli": "^4.4.0-RC.0",
"@angular/core": "^4.4.0-RC.0",
"@angular/forms": "^4.4.0-RC.0",
"@angular/http": "^4.4.0-RC.0",
"@angular/material": "^2.0.0-beta.10",
"@angular/platform-browser": "^4.4.0-RC.0",
"@angular/platform-browser-dynamic": "^4.4.0-RC.0",
"@ngx-form/interface": "^0.7.0",
"@types/jasmine": "^2.5.54",
"@types/karma": "^0.13.36",
"@types/lodash": "^4.14.74",
"@types/lodash-es": "^4.14.6",
"@types/node": "^8.0.26",
"clean-css": "^4.1.8",
"codelyzer": "^3.1.2",
"copyfiles": "^1.2.0",
"core-js": "^2.5.1",
"hammerjs": "^2.0.8",
"html-minifier": "^3.5.3",
"jasmine": "^2.8.0",
"jasmine-core": "^2.8.0",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-rollup-preprocessor": "^5.0.1",
"karma-typescript": "^3.0.5",
"lodash-es": "^4.17.4",
"node-sass": "^4.5.3",
"reflect-metadata": "^0.1.10",
"rimraf": "^2.6.1",
"rollup": "^0.49.2",
"rollup-plugin-angular": "^0.5.3",
"rollup-plugin-commonjs": "^8.2.0",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-typescript": "^0.8.1",
"rollup-plugin-uglify": "^2.0.1",
"rxjs": "^5.4.3",
"tslint": "^5.7.0",
"typescript": "^2.5.2",
"uglify-es": "^3.0.28",
"zone.js": "^0.8.17"
},
"keywords": [
"Angular",
"Component"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ngx-form/element.git"
},
"bugs": {
"url": "https://github.com/ngx-form/element/issues"
}
}