forked from guillotinaweb/ngx-schema-form
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.67 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.67 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
{
"name": "angular2-schema-form",
"version": "1.0.0-alpha.33",
"description": "Angular2 Schema Form (DISCLAIMER: it is not related to angular-schema-form)",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "npm-run-all -s lint clean tsc copy-template",
"copy-template": "copy ./src/**/**/*.html dist",
"check": "npm-check --skip-unused",
"test": "karma start",
"watch:test": "npm run test -- --auto-watch --no-single-run",
"lint": "tslint ./src/**/*.ts ./test/**/*.ts",
"clean": "rimraf dist",
"watch": "webpack --display-error-details --watch",
"start": "webpack-dev-server",
"start:hmr": "webpack-dev-server --env.HMR",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/makinacorpus/angular2-schema-form"
},
"keywords": [
"angularjs",
"angular",
"javascript",
"angular2",
"schema",
"form",
"schema form"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/makinacorpus/angular2-schema-form/issues"
},
"contributors": [
"Frank Bessou <fbessou@free.fr>",
"Eric Brehault <ebrehault@gmail.com>",
"Simon Bats <contact@simonbats.com>",
"Ramon Navarro Bosch <ramon.nb@gmail.com>"
],
"dependencies": {
"body-parser": "^1.15.1",
"methods": "^1.1.2",
"raw-loader": "0.5.1",
"z-schema": "^3.17.0"
},
"peerDependencies": {
"@angular/common": "^2.2.4",
"@angular/compiler": "^2.2.4",
"@angular/core": "^2.2.4",
"@angular/forms": "^2.2.4",
"@angular/platform-browser": "^2.2.4",
"@angular/platform-browser-dynamic": "^2.2.4",
"core-js": "^2.4.0"
},
"devDependencies": {
"@angular/common": "2.2.4",
"@angular/compiler": "2.2.4",
"@angular/compiler-cli": "2.2.4",
"@angular/core": "2.2.4",
"@angular/forms": "2.2.4",
"@angular/platform-browser": "2.2.4",
"@angular/platform-browser-dynamic": "2.2.4",
"@angular/platform-server": "2.2.4",
"@angularclass/hmr": "^1.2.2",
"@angularclass/hmr-loader": "^3.0.2",
"@ngtools/webpack": "^1.1.4",
"@types/core-js": "^0.9.28",
"@types/jasmine": "^2.5.37",
"@types/node": "^6.0.31",
"autoprefixer": "^6.4.0",
"awesome-typescript-loader": "2.2.4",
"bootstrap": "^3.3.6",
"chalk": "^1.1.3",
"clean-webpack-plugin": "^0.1.10",
"codelyzer": "~1.0.0-beta.4",
"copy": "^0.3.0",
"copy-webpack-plugin": "^4.0.0",
"core-js": "^2.4.0",
"cross-env": "^3.1.3",
"css-loader": "^0.24.0",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"fs-extra": "^1.0.0",
"gh-pages": "^0.11.0",
"html-webpack-plugin": "^2.22.0",
"istanbul-instrumenter-loader": "0.2.0",
"jasmine-core": "^2.5.2",
"json-loader": "^0.5.4",
"karma": "^1.3.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-mocha-reporter": "^2.0.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-remap-coverage": "^0.1.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"node-sass": "^3.10.1",
"npm-run-all": "^3.1.0",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "^2.1.7",
"postcss": "^5.1.1",
"postcss-loader": "^0.9.1",
"progress-bar-webpack-plugin": "^1.9.0",
"replace": "^0.3.0",
"rimraf": "^2.5.2",
"rxjs": "5.0.0-beta.12",
"sass-loader": "^4.0.1",
"source-map-loader": "^0.1.5",
"style-loader": "0.13.1",
"ts-helpers": "^1.1.2",
"tslint": "3.15.1",
"tslint-loader": "^2.1.5",
"typescript": "2.0.10",
"webpack": "2.1.0-beta.27",
"webpack-dev-server": "2.1.0-beta.11",
"webpack-merge": "^0.15.0",
"webpack-notifier": "^1.4.0",
"zone.js": "^0.6.26"
}
}