UNPKG

2.8 kBJSONView Raw
1{
2 "name": "aws-amplify",
3 "version": "4.3.8",
4 "description": "AWS Amplify is a JavaScript library for Frontend and mobile developers building cloud-enabled applications.",
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": false,
12 "scripts": {
13 "test": "jest -w 1 --passWithNoTests --coverage --maxWorkers 2",
14 "build-with-test": "npm run clean && npm test && tsc && webpack -p",
15 "build:cjs": "node ./build es5 && webpack && webpack --config ./webpack.config.dev.js",
16 "build:esm": "node ./build es6",
17 "build:cjs:watch": "node ./build es5 --watch",
18 "build:esm:watch": "node ./build es6 --watch",
19 "build": "npm run clean && npm run build:esm && npm run build:cjs",
20 "clean": "rimraf lib-esm lib dist",
21 "format": "echo \"Not implemented\"",
22 "lint": "tslint 'src/**/*.ts'",
23 "generate-docs-local": "typedoc --out docs src",
24 "generate-docs-root": "typedoc --out ../../docs src"
25 },
26 "repository": {
27 "type": "git",
28 "url": "https://github.com/aws-amplify/amplify-js.git"
29 },
30 "author": "Amazon Web Services",
31 "license": "Apache-2.0",
32 "bugs": {
33 "url": "https://github.com/aws/aws-amplify/issues"
34 },
35 "homepage": "https://aws-amplify.github.io/",
36 "dependencies": {
37 "@aws-amplify/analytics": "5.1.6",
38 "@aws-amplify/api": "4.0.26",
39 "@aws-amplify/auth": "4.3.16",
40 "@aws-amplify/cache": "4.0.28",
41 "@aws-amplify/core": "4.3.8",
42 "@aws-amplify/datastore": "3.7.0",
43 "@aws-amplify/geo": "1.1.8",
44 "@aws-amplify/interactions": "4.0.26",
45 "@aws-amplify/predictions": "4.0.26",
46 "@aws-amplify/pubsub": "4.2.2",
47 "@aws-amplify/storage": "4.4.9",
48 "@aws-amplify/ui": "2.0.3",
49 "@aws-amplify/xr": "3.0.26"
50 },
51 "jest": {
52 "globals": {
53 "ts-jest": {
54 "diagnostics": false,
55 "tsConfig": {
56 "lib": [
57 "es5",
58 "es2015",
59 "dom",
60 "esnext.asynciterable",
61 "es2017.object"
62 ],
63 "allowJs": true
64 }
65 }
66 },
67 "transform": {
68 "^.+\\.(js|jsx|ts|tsx)$": "ts-jest"
69 },
70 "preset": "ts-jest",
71 "testMatch": [
72 "**/__tests__/**/*-test.[jt]s?(x)"
73 ],
74 "moduleFileExtensions": [
75 "ts",
76 "tsx",
77 "js",
78 "json",
79 "jsx"
80 ],
81 "testEnvironment": "jsdom",
82 "testURL": "http://localhost/",
83 "coverageThreshold": {
84 "global": {
85 "branches": 0,
86 "functions": 0,
87 "lines": 0,
88 "statements": 0
89 }
90 },
91 "coveragePathIgnorePatterns": [
92 "/node_modules/",
93 "dist",
94 "lib",
95 "lib-esm"
96 ]
97 },
98 "gitHead": "0a7705013d2e5448a56cd0f56e622fa99f4a94d4"
99}