UNPKG

2.29 kBJSONView Raw
1{
2 "name": "@aws-amplify/xr",
3 "version": "3.0.8",
4 "description": "XR 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/XR.ts",
13 "./lib/XR.js",
14 "./lib-esm/XR.js",
15 "./dist/aws-amplify-xr.min.js",
16 "./dist/aws-amplify-xr.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": "4.2.2"
45 },
46 "jest": {
47 "globals": {
48 "ts-jest": {
49 "diagnostics": false,
50 "tsConfig": {
51 "lib": [
52 "es5",
53 "es2015",
54 "dom",
55 "esnext.asynciterable",
56 "es2017.object"
57 ],
58 "allowJs": true
59 }
60 }
61 },
62 "transform": {
63 "^.+\\.(js|jsx|ts|tsx)$": "ts-jest"
64 },
65 "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
66 "moduleFileExtensions": [
67 "ts",
68 "tsx",
69 "js",
70 "json",
71 "jsx"
72 ],
73 "testEnvironment": "jsdom",
74 "testURL": "http://localhost/",
75 "coverageThreshold": {
76 "global": {
77 "branches": 0,
78 "functions": 0,
79 "lines": 0,
80 "statements": 0
81 }
82 },
83 "coveragePathIgnorePatterns": [
84 "/node_modules/",
85 "dist",
86 "lib",
87 "lib-esm"
88 ]
89 },
90 "gitHead": "adf5fd8296668076e5e89513a331b61de6b58aa8"
91}