-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
101 lines (101 loc) · 3.21 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
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "laconia",
"version": "0.1.0",
"description": "Micro AWS Lambda framework",
"scripts": {
"clean": "npm run clean:lerna",
"clean:lerna": "lerna clean --yes || true",
"postclean": "rm -rf node_modules",
"postinstall": "lerna bootstrap",
"test": "jest --coverage",
"test:ci": "npm test -- -w 1",
"test:watch": "jest --watch",
"test:integration": "lerna exec --scope @laconia/batch npm run test:integration",
"test:acceptance": "npm run deploy-acceptance && npm run acceptance-test",
"test:all": "npm run test && npm run test:integration && npm run test:acceptance",
"test:jslint": "eslint ./ --ignore-path .gitignore",
"test:types": "tsc -p tsconfig.json && tsc -p tsconfig-js.json",
"test:packagelint": "lerna exec npmPkgJsonLint -- --quiet -c \\$LERNA_ROOT_PATH/.npmpackagejsonlintrc.json .",
"deploy-acceptance": "lerna exec --scope @laconia/acceptance-test npm run deploy",
"remove-acceptance": "lerna exec --scope @laconia/acceptance-test npm run remove",
"acceptance-test": "lerna exec --scope @laconia/acceptance-test npm run test",
"posttest": "npm run test:types && npm run test:jslint && npm run test:packagelint",
"publish:coverage": "cat ./coverage/lcov.info | coveralls",
"commit": "npx git-cz"
},
"repository": {
"type": "git",
"url": "https://github.com/laconiajs/laconia.git"
},
"author": "Wisen Tanasa <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/laconiajs/laconia/issues"
},
"homepage": "https://laconiajs.io/",
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^19.4.1",
"@laconia/test-helper": "file:packages/laconia-test-helper",
"@types/jest": "^26.0.3",
"@types/node": "~20.11.24",
"aws-event-mocks": "^0.0.0",
"aws-sdk": "^2.432.0",
"aws-sdk-mock": "^5.0.0",
"commitizen": "^4.0.3",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^3.0.2",
"delay": "^5.0.0",
"dynamodb-local": "0.0.34",
"eslint": "^7.8.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^14.0.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^8.0.3",
"jest": "^26.0.1",
"jest-extended": "^0.11.1",
"lerna": "^4.0.0",
"lodash": "^4.17.5",
"npm-package-json-lint": "^5.1.0",
"prettier": "^1.16.4",
"typescript": "^5.0.4"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
".*/test/",
".serverless",
"laconia-test-helper",
"laconia-acceptance-test"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"testPathIgnorePatterns": [
"/acceptance-test/",
"/integration-test/"
],
"setupFilesAfterEnv": [
"jest-extended"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}