UNPKG

@aws-amplify/datastore

Version:

AppSyncLocal support for aws-amplify

116 lines (115 loc) 2.8 kB
{ "name": "@aws-amplify/datastore", "version": "3.7.5", "description": "AppSyncLocal support for aws-amplify", "main": "./lib/index.js", "module": "./lib-esm/index.js", "typings": "./lib-esm/index.d.ts", "react-native": { "./lib/index": "./lib-esm/index.js" }, "publishConfig": { "access": "public" }, "sideEffects": [ "./src/datastore/datastore.ts", "./lib/datastore/datastore.js", "./lib-esm/datastore/datastore.js", "./dist/aws-amplify-datastore.min.js", "./dist/aws-amplify-datastore.js" ], "scripts": { "test": "npm run lint && jest -w 1 --coverage", "build-with-test": "npm test && npm run build", "build:cjs": "node ./build es5 && webpack && webpack --config ./webpack.config.dev.js", "build:esm": "node ./build es6", "build:cjs:watch": "node ./build es5 --watch", "build:esm:watch": "rimraf lib-esm && node ./build es6 --watch", "build": "yarn clean && yarn build:esm && npm run build:cjs", "clean": "rimraf lib-esm lib dist", "format": "echo \"Not implemented\"", "lint": "tslint '{__tests__,src}/**/*.ts'" }, "repository": { "type": "git", "url": "https://github.com/aws-amplify/amplify-js.git" }, "author": "Amazon Web Services", "license": "Apache-2.0", "bugs": { "url": "https://github.com/aws/aws-amplify/issues" }, "homepage": "https://aws-amplify.github.io/", "devDependencies": { "@react-native-community/netinfo": "4.7.0", "@types/uuid": "3.4.5", "dexie": "3.2.0", "dexie-export-import": "1.0.3", "fake-indexeddb": "3.0.0" }, "dependencies": { "@aws-amplify/api": "4.0.31", "@aws-amplify/auth": "4.4.0", "@aws-amplify/core": "4.3.13", "@aws-amplify/pubsub": "4.2.7", "amazon-cognito-identity-js": "5.2.5", "idb": "5.0.6", "immer": "9.0.6", "ulid": "2.3.0", "uuid": "3.3.2", "zen-observable-ts": "0.8.19", "zen-push": "0.2.1" }, "jest": { "globals": { "ts-jest": { "diagnostics": true, "tsConfig": { "lib": [ "es5", "es2015", "dom", "esnext.asynciterable", "es2019" ], "allowJs": true, "esModuleInterop": true, "downlevelIteration": true } } }, "transform": { "^.+\\.(js|jsx|ts|tsx)$": "ts-jest" }, "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$", "testPathIgnorePatterns": [ "__tests__/model.ts", "__tests__/schema.ts", "__tests__/helpers.ts" ], "moduleFileExtensions": [ "ts", "tsx", "js", "json", "jsx" ], "testEnvironment": "jsdom", "testURL": "http://localhost/", "coverageThreshold": { "global": { "branches": 0, "functions": 0, "lines": 0, "statements": 0 } }, "coveragePathIgnorePatterns": [ "/node_modules/", "dist", "lib", "lib-esm" ] }, "gitHead": "7a25443a4abb1c977a078432757f97ce34f02a02" }