-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@aws-amplify/datastore-storage-adapter",
"version": "2.2.5",
"description": "SQLite storage adapter for Amplify DataStore ",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
"typings": "./dist/esm/index.d.ts",
"react-native": "./dist/cjs/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "npm run lint && jest -w 1 --coverage --logHeapUsage",
"build-with-test": "npm test && npm run build",
"build:umd": "webpack && webpack --config ./webpack.config.dev.js",
"build:esm-cjs": "rollup --forceExit -c rollup.config.mjs",
"build:watch": "npm run build:esm-cjs -- --watch",
"build": "npm run clean && npm run build:esm-cjs && npm run build:umd",
"clean": "rimraf dist lib lib-esm",
"format": "echo \"Not implemented\"",
"lint": "eslint '**/*.{ts,tsx}' && npm run ts-coverage",
"lint:fix": "eslint '**/*.{ts,tsx}' --fix",
"ts-coverage": "typescript-coverage-report -p ./tsconfig.build.json -t 94.16"
},
"repository": {
"type": "git",
"url": "https://github.com/aws-amplify/amplify-js.git",
"directory": "packages/datastore-storage-adapter"
},
"author": "Amazon Web Services",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/aws/aws-amplify/issues"
},
"homepage": "https://aws-amplify.github.io/",
"peerDependencies": {
"@aws-amplify/core": "^6.16.2"
},
"devDependencies": {
"@aws-amplify/core": "6.16.4",
"@aws-amplify/datastore": "5.1.8",
"@types/better-sqlite3": "^7.6.13",
"@types/react-native-sqlite-storage": "5.0.1",
"better-sqlite3": "^12.6.2",
"expo-file-system": "15.0.0",
"expo-sqlite": "10.1.0",
"react-native-sqlite-storage": "5.0.0"
}
}