-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.28 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
{
"author": {
"name": "Jan Hesters",
"url": "https://janhesters.com"
},
"dependencies": {
"@types/ramda": "0.28.20",
"ramda": "0.28.0"
},
"description": "A simple mock function to mock functions.",
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@semantic-release/changelog": "6.0.2",
"@semantic-release/git": "10.0.1",
"@typescript-eslint/eslint-plugin": "5.48.1",
"@typescript-eslint/parser": "5.48.1",
"eslint": "8.31.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.27.4",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "8.0.0",
"eslint-plugin-unicorn": "45.0.2",
"husky": "8.0.3",
"lint-staged": "13.1.0",
"prettier": "2.8.2",
"riteway": "7.0.0",
"semantic-release": "19.0.5",
"tap-nirvana": "1.1.0",
"ts-node": "10.9.1",
"typescript": "4.9.4",
"watch": "1.0.2"
},
"engines": {
"node": ">=16"
},
"files": [
"dist/**/*"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged && yarn type-check"
}
},
"license": "MIT",
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
},
"main": "dist/index.js",
"name": "mock-function",
"private": false,
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
},
"repository": "https://github.com/janhesters/mock-function",
"scripts": {
"build": "tsc",
"format": "prettier --write .",
"lint": "eslint --cache . --ext ts --ext tsx --ext js",
"semantic-release": "semantic-release",
"test": "NODE_ENV=test riteway -r ts-node/register/transpile-only 'src/**/*.test.ts' | tap-nirvana",
"type-check": "tsc --pretty --noEmit",
"watch": "watch 'clear && yarn test' src"
},
"sideEffects": false,
"types": "dist/index.d.ts",
"version": "2.2.0"
}