UNPKG

2.6 kBJSONView Raw
1{
2 "name": "@aws-amplify/storage",
3 "version": "3.3.8",
4 "description": "Storage category of aws-amplify",
5 "main": "./lib/index.js",
6 "module": "./lib-esm/index.js",
7 "typings": "./lib-esm/index.d.ts",
8 "react-native": {
9 "./lib/index": "./lib-esm/index.js"
10 },
11 "sideEffects": [
12 "./src/index.ts",
13 "./lib/index.js",
14 "./lib-esm/index.js",
15 "./dist/aws-amplify-storage.min.js",
16 "./dist/aws-amplify-storage.js"
17 ],
18 "publishConfig": {
19 "access": "public"
20 },
21 "scripts": {
22 "test": "tslint 'src/**/*.ts' && jest -w 1 --coverage",
23 "build-with-test": "npm test && npm run build",
24 "build:cjs": "node ./build es5 && webpack && webpack --config ./webpack.config.dev.js",
25 "build:esm": "node ./build es6",
26 "build:cjs:watch": "node ./build es5 --watch",
27 "build:esm:watch": "node ./build es6 --watch",
28 "build": "npm run clean && npm run build:esm && npm run build:cjs",
29 "clean": "rimraf lib-esm lib dist",
30 "format": "echo \"Not implemented\"",
31 "lint": "tslint 'src/**/*.ts'"
32 },
33 "repository": {
34 "type": "git",
35 "url": "https://github.com/aws-amplify/amplify-js.git"
36 },
37 "author": "Amazon Web Services",
38 "license": "Apache-2.0",
39 "bugs": {
40 "url": "https://github.com/aws/aws-amplify/issues"
41 },
42 "homepage": "https://aws-amplify.github.io/",
43 "dependencies": {
44 "@aws-amplify/core": "^3.8.0",
45 "@aws-sdk/client-s3": "1.0.0-gamma.8",
46 "@aws-sdk/s3-request-presigner": "1.0.0-gamma.7",
47 "@aws-sdk/util-create-request": "1.0.0-gamma.7",
48 "@aws-sdk/util-format-url": "1.0.0-gamma.7",
49 "axios": "0.19.0",
50 "events": "^3.1.0",
51 "sinon": "^7.5.0"
52 },
53 "jest": {
54 "globals": {
55 "ts-jest": {
56 "diagnostics": false,
57 "tsConfig": {
58 "lib": [
59 "es5",
60 "es2015",
61 "dom",
62 "esnext.asynciterable",
63 "es2017.object"
64 ],
65 "allowJs": true
66 }
67 }
68 },
69 "transform": {
70 "^.+\\.(js|jsx|ts|tsx)$": "ts-jest"
71 },
72 "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
73 "moduleFileExtensions": [
74 "ts",
75 "tsx",
76 "js",
77 "json",
78 "jsx"
79 ],
80 "testEnvironment": "jsdom",
81 "testURL": "http://localhost/",
82 "coverageThreshold": {
83 "global": {
84 "branches": 0,
85 "functions": 0,
86 "lines": 0,
87 "statements": 0
88 }
89 },
90 "coveragePathIgnorePatterns": [
91 "/node_modules/"
92 ]
93 },
94 "devDependencies": {
95 "@types/sinon": "^7.5.1"
96 },
97 "gitHead": "3d23301745d526e67794f80999afaee6120f64f7"
98}