forked from aws-amplify/amplify-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(aws-amplify-angular): remove rollup-plugin-node-builtins (aws-amp…
- Loading branch information
Showing
2 changed files
with
75 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,78 +1,77 @@ | ||
{ | ||
"name": "aws-amplify-angular", | ||
"version": "5.0.24", | ||
"description": "AWS Amplify Angular Components", | ||
"main": "bundles/aws-amplify-angular.umd.js", | ||
"module": "dist/index.js", | ||
"typings": "dist/index.d.ts", | ||
"scripts": { | ||
"cleantemp": "rimraf coverage dist tmp docs", | ||
"ngcompile": "node_modules/.bin/ngc -p tsconfig-aot.json", | ||
"test": "jest -w 1 --maxWorkers 2", | ||
"transpile": "ngc", | ||
"package": "rollup -c rollup.config.js", | ||
"minify": "uglifyjs dist/bundles/aws-amplify-angular.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/aws-amplify-angular.umd.min.js", | ||
"build": "npm run transpile && npm run package && npm run minify && npm run declarations", | ||
"build:esm:watch": "ngc --watch", | ||
"build:cjs:watch": "echo \"CommonJS modules are not exported in angular. Use target build:esm:watch\"", | ||
"format": "echo \"Not implemented\"", | ||
"declarations": "ngc --p ./declarations/" | ||
}, | ||
"jest": { | ||
"transformIgnorePatterns": [ | ||
"node_modules/(?!@ionic)" | ||
] | ||
}, | ||
"author": "Amazon Web Services", | ||
"license": "Apache-2.0", | ||
"devDependencies": { | ||
"@angular/common": "^5.2.6", | ||
"@angular/compiler": "^5.2.9", | ||
"@angular/compiler-cli": "^5.2.9", | ||
"@angular/core": "^5.2.6", | ||
"@angular/forms": "^6.0.3", | ||
"@angular/platform-browser": "^5.2.9", | ||
"@angular/platform-browser-dynamic": "^5.2.9", | ||
"@types/lodash": "^4.14.106", | ||
"@types/node": "^9.4.6", | ||
"@types/paho-mqtt": "^1.0.3", | ||
"@types/zen-observable": "^0.5.3", | ||
"angular2-template-loader": "^0.6.2", | ||
"awesome-typescript-loader": "^4.0.1", | ||
"aws-amplify": "^3.0.24", | ||
"babel-core": "^6.26.3", | ||
"babel-plugin-lodash": "^3.3.4", | ||
"babel-preset-env": "^1.7.0", | ||
"babel-preset-es2015": "^6.24.1", | ||
"css-loader": "^0.28.1", | ||
"jest-preset-angular": "^7.1.1", | ||
"json-loader": "^0.5.4", | ||
"ng-mocks": "7.x.x", | ||
"raw-loader": "^0.5.1", | ||
"rimraf": "^2.6.1", | ||
"rollup": "^1.31.0", | ||
"rollup-plugin-analyzer": "^3.2.2", | ||
"rollup-plugin-angular-aot": "^0.0.4", | ||
"rollup-plugin-babel": "^4.3.3", | ||
"rollup-plugin-commonjs": "^10.1.0", | ||
"rollup-plugin-json": "^4.0.0", | ||
"rollup-plugin-multi-entry": "^2.1.0", | ||
"rollup-plugin-node-builtins": "^2.1.2", | ||
"rollup-plugin-node-globals": "^1.4.0", | ||
"rollup-plugin-node-resolve": "^5.2.0", | ||
"rollup-plugin-uglify": "^6.0.4", | ||
"rxjs": "^6.2.1", | ||
"source-map-explorer": "^1.3.3", | ||
"to-string-loader": "^1.1.5", | ||
"uglify-js": "3.9.4", | ||
"zone": "^0.3.4", | ||
"zone.js": "^0.8.26" | ||
}, | ||
"dependencies": { | ||
"@aws-amplify/ui": "^2.0.2", | ||
"rxjs-compat": "^6.2.1" | ||
}, | ||
"peerDependencies": { | ||
"aws-amplify": "^3.0.0" | ||
} | ||
"name": "aws-amplify-angular", | ||
"version": "5.0.24", | ||
"description": "AWS Amplify Angular Components", | ||
"main": "bundles/aws-amplify-angular.umd.js", | ||
"module": "dist/index.js", | ||
"typings": "dist/index.d.ts", | ||
"scripts": { | ||
"cleantemp": "rimraf coverage dist tmp docs", | ||
"ngcompile": "node_modules/.bin/ngc -p tsconfig-aot.json", | ||
"test": "jest -w 1 --maxWorkers 2", | ||
"transpile": "ngc", | ||
"package": "rollup -c rollup.config.js", | ||
"minify": "uglifyjs dist/bundles/aws-amplify-angular.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/aws-amplify-angular.umd.min.js", | ||
"build": "npm run transpile && npm run package && npm run minify && npm run declarations", | ||
"build:esm:watch": "ngc --watch", | ||
"build:cjs:watch": "echo \"CommonJS modules are not exported in angular. Use target build:esm:watch\"", | ||
"format": "echo \"Not implemented\"", | ||
"declarations": "ngc --p ./declarations/" | ||
}, | ||
"jest": { | ||
"transformIgnorePatterns": [ | ||
"node_modules/(?!@ionic)" | ||
] | ||
}, | ||
"author": "Amazon Web Services", | ||
"license": "Apache-2.0", | ||
"devDependencies": { | ||
"@angular/common": "^5.2.6", | ||
"@angular/compiler": "^5.2.9", | ||
"@angular/compiler-cli": "^5.2.9", | ||
"@angular/core": "^5.2.6", | ||
"@angular/forms": "^6.0.3", | ||
"@angular/platform-browser": "^5.2.9", | ||
"@angular/platform-browser-dynamic": "^5.2.9", | ||
"@types/lodash": "^4.14.106", | ||
"@types/node": "^9.4.6", | ||
"@types/paho-mqtt": "^1.0.3", | ||
"@types/zen-observable": "^0.5.3", | ||
"angular2-template-loader": "^0.6.2", | ||
"awesome-typescript-loader": "^4.0.1", | ||
"aws-amplify": "^3.0.24", | ||
"babel-core": "^6.26.3", | ||
"babel-plugin-lodash": "^3.3.4", | ||
"babel-preset-env": "^1.7.0", | ||
"babel-preset-es2015": "^6.24.1", | ||
"css-loader": "^0.28.1", | ||
"jest-preset-angular": "^7.1.1", | ||
"json-loader": "^0.5.4", | ||
"ng-mocks": "7.x.x", | ||
"raw-loader": "^0.5.1", | ||
"rimraf": "^2.6.1", | ||
"rollup": "^1.31.0", | ||
"rollup-plugin-analyzer": "^3.2.2", | ||
"rollup-plugin-angular-aot": "^0.0.4", | ||
"rollup-plugin-babel": "^4.3.3", | ||
"rollup-plugin-commonjs": "^10.1.0", | ||
"rollup-plugin-json": "^4.0.0", | ||
"rollup-plugin-multi-entry": "^2.1.0", | ||
"rollup-plugin-node-globals": "^1.4.0", | ||
"rollup-plugin-node-resolve": "^5.2.0", | ||
"rollup-plugin-uglify": "^6.0.4", | ||
"rxjs": "^6.2.1", | ||
"source-map-explorer": "^1.3.3", | ||
"to-string-loader": "^1.1.5", | ||
"uglify-js": "3.9.4", | ||
"zone": "^0.3.4", | ||
"zone.js": "^0.8.26" | ||
}, | ||
"dependencies": { | ||
"@aws-amplify/ui": "^2.0.2", | ||
"rxjs-compat": "^6.2.1" | ||
}, | ||
"peerDependencies": { | ||
"aws-amplify": "^3.0.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters