This repository has been archived by the owner on Feb 9, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
85 lines (85 loc) · 3.19 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
{
"name": "ng2-formly-templates-material",
"version": "2.0.0-aplha.0",
"description": "Provides Material field templates for ng2-formly",
"main": "lib/index.js",
"scripts": {
"flow.install:typings": "./node_modules/.bin/typings install",
"flow.compile": "npm run flow.install:typings && npm run flow.compile:common && npm run flow.check",
"flow.compile:common": "./node_modules/.bin/tsc",
"flow.clean": "./node_modules/.bin/del dist \"dist/services\" ",
"flow.check": "./node_modules/.bin/tslint -c tslint.json src/**/*.ts demo/**/*.ts",
"commit": "npm run build && git-cz",
"prepublish": "npm run build",
"prebuild": "typings install",
"build": "npm run build:lib && npm run build:bundles",
"prebuild:lib": "shx rm -rf ./lib",
"build:lib": "tsc --project tsconfig.build.json --outDir lib",
"prebuild:bundles": "shx rm -rf ./bundles",
"build:bundles": "npm run build:bundles:compile && npm run build:bundles:minify",
"build:bundles:compile": "tsc --project tsconfig.build.json --module system --outFile bundles/ng2-formly-templates-material.js",
"build:bundles:minify": "uglifyjs bundles/ng2-formly-templates-material.js --output bundles/ng2-formly-templates-material.min.js --in-source-map bundles/ng2-formly-templates-material.js.map --source-map bundles/ng2-formly-templates-material.min.js.map"
},
"keywords": [
"angular",
"forms",
"angular2-formly",
"formly",
"angular 2",
"angular 2 forms",
"json forms",
"form library",
"material"
],
"author": "",
"license": "MIT",
"devDependencies": {
"async": "^1.5.2",
"commitizen": "^2.7.6",
"connect": "^3.4.0",
"cz-conventional-changelog": "^1.1.5",
"del": "^2.2.0",
"del-cli": "^0.2.0",
"gulp": "^3.9.0",
"gulp-livereload": "^3.8.1",
"gulp-tslint": "^4.3.5",
"gulp-typescript": "^2.8.0",
"jasmine": "^2.4.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-firefox-launcher": "^0.1.7",
"karma-jasmine": "^0.3.8",
"karma-phantomjs-launcher": "^1.0.0",
"karma-typescript-preprocessor": "^0.1.2",
"open": "0.0.5",
"phantomjs-prebuilt": "^2.1.7",
"serve-static": "^1.10.0",
"shx": "^0.1.2",
"systemjs-builder": "^0.15.15",
"ts-loader": "^0.8.2",
"tslint": "^3.7.4",
"typescript": "^2.0.0",
"typings": "^0.7.12",
"uglify-js": "^2.6.2"
},
"dependencies": {
"@angular/common": "^2.0.0-rc.5",
"@angular/compiler": "^2.0.0-rc.5",
"@angular/core": "^2.0.0-rc.5",
"@angular/forms": "^0.3.0",
"@angular/platform-browser": "^2.0.0-rc.5",
"@angular/platform-browser-dynamic": "^2.0.0-rc.5",
"@angular/http": "2.0.0-rc.5",
"@angular2-material/button": "^2.0.0-alpha.7",
"@angular2-material/card": "^2.0.0-alpha.7",
"@angular2-material/checkbox": "^2.0.0-alpha.7",
"@angular2-material/core": "^2.0.0-alpha.7",
"@angular2-material/icon": "^2.0.0-alpha.7",
"@angular2-material/input": "^2.0.0-alpha.7",
"@angular2-material/list": "^2.0.0-alpha.7",
"@angular2-material/radio": "^2.0.0-alpha.7",
"@angular2-material/sidenav": "^2.0.0-alpha.7",
"@angular2-material/toolbar": "^2.0.0-alpha.7",
"systemjs": "^0.19.31"
}
}