uppy/packages/@uppy/angular/package.json
github-actions[bot] 24cd9e6251
Release: uppy@2.3.2 (#3383)
| Package         | Version | Package         | Version |
| --------------- | ------- | --------------- | ------- |
| @uppy/angular   |   0.2.8 | @uppy/vue       |   0.4.5 |
| @uppy/companion |   3.1.4 | uppy            |   2.3.2 |
| @uppy/svelte    |   1.0.7 |                 |         |

- meta: fix release script (Antoine du Hamel)
- @uppy/core: document file.name (Merlijn Vos / #3381)
- @uppy/angular,@uppy/companion,@uppy/svelte,@uppy/vue: add `.npmignore` files to ignore `.gitignore` when packing (Antoine du Hamel / #3380)
- meta: add VSCode workspace settings to `.gitignore` (Antoine du Hamel)
- @uppy/companion: Upgrade ws in companion (Merlijn Vos / #3377)
- meta: use ESBuild to bundle in E2E test suite (Antoine du Hamel / #3375)
- meta: update linter config to parse ESM files (Antoine du Hamel / #3371)
- meta: move dev workspace to `private/` (Antoine du Hamel / #3368)
- meta: use Vite for examples/dev (Antoine du Hamel / #3361)
- website: remove dependency on `crypto` in @uppy/transloadit example (Antoine du Hamel / #3367)
- meta: enable linter on website examples (Antoine du Hamel / #3366)
- meta: enable linter on mjs scripts (Antoine du Hamel / #3364)
- @uppy/angular: Fix module field in `package.json` (Merlijn Vos / #3365)
- meta: improve release script wording and formatting (Artur Paikin)
2021-12-21 14:46:52 +00:00

81 lines
2.4 KiB
JSON

{
"name": "@uppy/angular",
"version": "0.2.8",
"module": "dist/angular/esm2020/public-api.mjs",
"types": "dist/angular/uppy-angular.d.ts",
"scripts": {
"ng": "ng",
"start": "start-storybook -p 6006",
"build": "ng build",
"build:release": "ng build --prod",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"build-storybook": "build-storybook"
},
"dependencies": {
"@angular/animations": ">= 11",
"@angular/common": ">= 11",
"@angular/compiler": ">= 11",
"@angular/core": ">= 11",
"@angular/forms": ">= 11",
"@angular/platform-browser": ">= 11",
"@angular/platform-browser-dynamic": ">= 11",
"@angular/router": ">= 11",
"@uppy/dashboard": "workspace:^",
"@uppy/drag-drop": "workspace:^",
"@uppy/progress-bar": "workspace:^",
"@uppy/status-bar": "workspace:^",
"prop-types": "^15.7.2",
"rxjs": "^6.5.3",
"tslib": "^2.0.0",
"zone.js": "~0.11.3"
},
"peerDependencies": {
"@uppy/core": ">=1"
},
"devDependencies": {
"@angular-devkit/build-angular": ">= 11",
"@angular-eslint/builder": ">= 11",
"@angular-eslint/eslint-plugin": ">= 11",
"@angular-eslint/eslint-plugin-template": ">= 11",
"@angular-eslint/schematics": ">= 11",
"@angular-eslint/template-parser": ">= 11",
"@angular/cli": ">= 11",
"@angular/compiler-cli": ">= 11",
"@babel/core": "^7.10.5",
"@storybook/addon-actions": "^6.2.7",
"@storybook/addon-links": "^6.2.7",
"@storybook/addon-notes": "^5.3.19",
"@storybook/addons": "^5.3.21",
"@storybook/angular": "^6.2.7",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-loader": "^8.1.0",
"eslint": "^8.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^37.0.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.3.9",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^13.0.0",
"protractor": "~7.0.0",
"redux": "^4.1.2",
"ts-node": "~8.3.0",
"typescript": "~4.4"
},
"publishConfig": {
"access": "public"
},
"files": [
"/dist"
]
}