This repository has been archived by the owner on Feb 10, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.48 KB
/
package.json
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
50
51
52
53
54
55
56
57
{
"name": "@exact-realty/encrypted-s3-store",
"version": "1.0.4",
"description": "Simple wrapper for aws4fetch to store encrypted files",
"main": "dist/index.js",
"module": "./dist/index.mjs",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.8.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"aws4fetch": "^1.0.17",
"esbuild": "^0.20.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"mocha": "^10.3.0",
"nyc": "^15.1.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"aws4fetch": "^1.0.17"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Exact-Realty/ts-encrypted-s3-store.git"
},
"files": [
"dist/**/*"
],
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"build": "tsc --emitDeclarationOnly --declarationMap --declaration && node esbuild.mjs",
"test": "nyc mocha",
"prepack": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run lint && git add -A src",
"postversion": "git push && git push --tags"
},
"author": "Exact Realty Limited",
"license": "ISC",
"keywords": []
}