-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2.77 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@jurijzahn8019/aws-sdk-paginate-list",
"version": "1.0.108",
"description": "Provides a function to paginate over a list function on aws-sdk",
"main": "dist/index.cjs.js",
"module": "dist/index.es6.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "(for S in clean rollup types; do npm run build:$S; [ $? -ne 0 ] && exit 1; done; exit 0;)",
"build:clean": "npm run clean",
"build:rollup": "rollup -c",
"build:types": "tsc -p tsconfig.prod.json -d --outDir ./dist --emitDeclarationOnly",
"build:tsc": "tsc --noEmit",
"build:watch": "tsc -w",
"clean": "rm -rf ./dist ./tmp",
"coveralls": "cat ./tmp/coverage/lcov.info | coveralls",
"lint": "eslint --fix src/**/*.ts",
"packlocal": "export P=jurijzahn8019-aws; rm -rf ./tmp/package && npm pack && mkdir -p ./tmp && mv -f $P-*.tgz ./tmp/ && tar xfz ./tmp/$P-*.tgz -C ./tmp",
"pub": "npm run clean && npm run build && npm publish --access public",
"precommit": "npm run lint && npm run build",
"prepare": "husky install",
"prerel": "standard-version --skip.changelog -p $(git branch --show-current | sed 's/main/rc/g' | sed 's/[_\\/]/-/g')",
"release": "standard-version",
"push:tags": "git push --follow-tags origin main",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jurijzahn8019/aws-sdk-paginate-list.git"
},
"keywords": [
"aws",
"aws-sdk",
"list",
"paginate"
],
"author": "Jurij Zahn",
"license": "MIT",
"bugs": {
"url": "https://github.com/jurijzahn8019/aws-sdk-paginate-list/issues"
},
"homepage": "https://github.com/jurijzahn8019/aws-sdk-paginate-list#readme",
"peerDependencies": {
"aws-sdk": "^2.x.x"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@jurijzahn8019/aws-promise-jest-mock": "^2.4.84",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "8.5.0",
"@types/jest": "^27.5.0",
"@types/node": "^18.16.3",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.62.0",
"aws-sdk": "^2.1430.0",
"coveralls": "^3.1.1",
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.9.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^26.8.7",
"eslint-plugin-prettier": "^4.2.1",
"git-branch": "^2.0.1",
"husky": "^8.0.3",
"jest": "^27.5.1",
"jest-junit": "^13.2.0",
"prettier": "^2.8.8",
"rollup": "^2.79.1",
"rollup-plugin-exclude-dependencies-from-bundle": "^1.1.23",
"standard-version": "^9.5.0",
"ts-jest": "^27.1.4",
"ts-node": "^10.9.1",
"tslib": "^2.6.1",
"typescript": "4.9.5"
}
}