-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 2.38 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
58
59
60
61
62
63
{
"name": "@seneca/s3-store",
"version": "2.5.0",
"description": "Entity store using AWS S3.",
"main": "dist/s3-store.js",
"type": "commonjs",
"types": "dist/s3-store.d.ts",
"scripts": {
"watch": "tsc -w -d",
"test-lab": "lab -v -P test -t 50 -l --sourcemaps --transform node_modules/lab-transform-typescript -I @@any-promise/REGISTRATION -r console -o stdout -r html -o test/coverage.html",
"test-some": "lab -v -P test -l --sourcemaps --transform node_modules/lab-transform-typescript -g",
"test": "echo fix-test",
"coveralls": "lab -s -P test -r lcov | coveralls",
"prettier": "prettier --write --no-semi --single-quote src/*.ts test/*.js",
"build": "tsc -d",
"doc": "seneca-doc -p seneca-entity",
"clean": "rm -rf node_modules yarn.lock package-lock.json",
"reset": "npm run clean && npm i && npm run build && npm run doc && npm test",
"repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push --tags;",
"repo-publish": "npm run clean && npm i && npm run build && npm run repo-publish-quick",
"repo-publish-quick": "npm run prettier && npm run build && npm run doc && npm run test && npm run repo-tag && npm publish --registry https://registry.npmjs.org --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/senecajs/seneca-s3-store.git"
},
"author": "Richard Rodger @rjrodger",
"license": "MIT",
"bugs": {
"url": "https://github.com/senecajs/seneca-s3-store/issues"
},
"homepage": "https://github.com/senecajs/seneca-s3-store#readme",
"files": [
"src",
"dist",
"LICENSE",
"README.md"
],
"devDependencies": {
"@aws-sdk/client-s3": "^3.461.0",
"@aws-sdk/s3-request-presigner": "^3.468.0",
"@hapi/code": "^9.0.3",
"@hapi/lab": "^25.2.0",
"@seneca/doc": "^8.0.0",
"@types/node": "20.14.2",
"coveralls": "^3.1.1",
"lab-transform-typescript": "^3.0.1",
"prettier": "^3.3.1",
"s3rver": "^3.7.1",
"seneca-store-test": "^5.2.0",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@aws-sdk/client-s3": ">=3",
"@aws-sdk/s3-request-presigner": ">=3",
"seneca": ">=3||>=4.0.0-rc2",
"seneca-entity": ">=26",
"seneca-promisify": ">=3"
},
"dependencies": {
"chokidar": "^3.6.0"
}
}