-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.12 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
{
"name": "jest-aws-sdk-mock",
"version": "1.0.2",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"url": "[email protected]:tuan231195/jest-aws-sdk-mock.git"
},
"scripts": {
"semantic-release": "semantic-release",
"build": "ttsc",
"commit": "git-cz",
"prepare": "npm run build",
"test": "jest --passWithNoTests",
"test:coverage": "jest --coverage --passWithNoTests",
"lint": "eslint 'src/**/*.{ts,js}'",
"prettier:check": "prettier --check 'src/**/*.{ts,js}'",
"publish:coverage": "codecov",
"validate": "run-s test:coverage lint prettier:check",
"ci:validate": "rm -rf node_modules && npm ci && npm run validate"
},
"license": "MIT",
"devDependencies": {
"aws-sdk": "^2.747.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "5.0.0",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/npm": "7.0.3",
"@semantic-release/release-notes-generator": "9.0.1",
"@types/jest": "25.1.4",
"@typescript-eslint/eslint-plugin": "2.22.0",
"@typescript-eslint/parser": "2.22.0",
"codecov": "^3.7.2",
"commitizen": "^4.2.1",
"concat-stream": "^2.0.0",
"cz-conventional-changelog": "3.1.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-prettier": "3.1.2",
"husky": "^4.2.3",
"jest": "25.1.0",
"lint-staged": "10.0.8",
"npm-run-all": "4.1.5",
"prettier": "1.19.1",
"semantic-release": "17.0.4",
"ts-jest": "^26.3.0",
"ttypescript": "1.5.10",
"typescript": "3.8.3",
"typescript-transform-paths": "1.1.14"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "npm run validate"
}
},
"lint-staged": {
"**/*.{js,ts}": [
"prettier --write",
"eslint --fix"
],
"**/*.{json,html,css,yml}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"lodash.get": "^4.4.2"
},
"peerDependencies": {
"aws-sdk": "^2.290.0"
}
}