angular2-swagger-form-field
Advanced tools
Comparing version 1.1.1 to 1.1.2
{ | ||
"name": "angular2-swagger-form-field", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "Angular 2 module with some components to build a model-driven form using the generated classes from the SwaggerTSGenerator.", | ||
"main": "components.ts", | ||
"scripts": {}, | ||
"scripts": { | ||
"build": "tcs", | ||
"deploy-patch": "tsc && npm version patch && npm publish" | ||
}, | ||
"keywords": [ | ||
@@ -8,0 +11,0 @@ "Swagger", |
{ | ||
"compilerOptions": { | ||
"declaration": false, | ||
"module": "system", | ||
"target": "es5", | ||
"noImplicitAny": false, | ||
"experimentalDecorators": true, | ||
"emitDecoratorMetadata": true, | ||
"experimentalDecorators": true, | ||
"outFile": "dist/components.js", | ||
"rootDir": ".", | ||
"sourceMap": true, | ||
"removeComments": false, | ||
"moduleResolution": "node", | ||
"declaration": true, | ||
"lib": [ | ||
"es6", | ||
"es2015", | ||
"dom" | ||
], | ||
"skipLibCheck": true, | ||
"mapRoot": "./", | ||
"module": "es6", | ||
"moduleResolution": "node", | ||
"outDir": "../dist/out-tsc", | ||
"sourceMap": true, | ||
"target": "es5", | ||
"typeRoots": [ | ||
"../node_modules/@types" | ||
], | ||
"types": [ | ||
"jasmine" | ||
] | ||
}, | ||
"angularCompilerOptions": { | ||
"genDir": "./src/ngfactory", | ||
"entryModule": "src/app#AppModule" | ||
} | ||
} | ||
"include": [ | ||
"src/**/*", | ||
"components.ts" | ||
], | ||
"exclude": [ | ||
"node_modules", | ||
"**/*.spec.ts" | ||
] | ||
} |
279064
18
1099