This repository has been archived by the owner on Sep 1, 2024. It is now read-only.
generated from 5app/package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 1.95 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
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@5app/region-sync",
"version": "1.0.2",
"description": "Utilities for syncing data between regions",
"main": "index.js",
"scripts": {
"lint": "eslint ./",
"lint-fix": "npm run lint -- --fix",
"lint-diff": "LIST=`git diff-index --name-only HEAD | grep '.*\\.js$';`; if [ \"$LIST\" ]; then eslint $LIST; fi",
"precommit-msg": "echo 'Running pre-commit checks... (skip using --no-verify)'",
"precommit": "pretty-quick --staged && npm run precommit-msg && npm run lint-diff",
"semantic-release": "semantic-release",
"test": "tap --lines=100 --branches=84 --functions=100"
},
"files": [
"src/",
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/5app/region-sync.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/5app/region-sync/issues"
},
"homepage": "https://github.com/5app/region-sync#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=10.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
2,
"never",
[
"start-case",
"pascal-case"
]
]
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run precommit"
}
},
"dependencies": {
"@5app/logger": "^2.1.0",
"aws-sdk": "^2.796.0"
},
"devDependencies": {
"@commitlint/cli": "^12.0.0",
"@commitlint/config-conventional": "^12.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"eslint": "^7.13.0",
"eslint-config-5app": "^0.12.3",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^5.0.0",
"nock": "^13.0.5",
"prettier": "^2.2.0",
"pretty-quick": "^3.1.0",
"semantic-release": "^17.2.4",
"tap": "^14.11.0"
},
"keywords": [
"sns",
"sqs",
"pub-sub",
"pub",
"sub",
"region",
"aws",
"sync",
"queues",
"topics"
],
"author": "Sam Adams"
}