-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.65 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
{
"name": "recursive-proxy-mock",
"version": "1.0.0-semantic-release",
"description": "Create a proxy which can mock any object, function, class, etc. with infinite depth and combinations.",
"keywords": [
"proxy",
"es6 proxy",
"recursive proxy",
"mock",
"mock proxy",
"mock anything",
"jest mock",
"proxy mock",
"test mock",
"unit test",
"replay",
"queue actions"
],
"author": {
"name": "Jason O'Neill",
"url": "https://creativetechguy.com"
},
"homepage": "https://github.com/CreativeTechGuy/recursive-proxy-mock",
"license": "MIT",
"files": [
"/dist",
"/src",
"!/src/**/*.test.ts"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/CreativeTechGuy/recursive-proxy-mock.git"
},
"engines": {
"node": ">=14"
},
"scripts": {
"verify": "npm run lint && npm run format:check && npm run spellcheck && npm run ts-check && npm run test",
"build": "rimraf dist && rollup -c",
"lint": "eslint . --max-warnings 0 && npm run lint:readme",
"lint:fix": "eslint . --max-warnings 0 --fix",
"lint:readme": "remark README.md --use validate-links --no-stdout",
"test": "jest",
"ts-check": "tsc --noEmit --skipLibCheck",
"format": "prettier . --write --cache --loglevel warn",
"format:check": "prettier . --check --cache --loglevel warn",
"spellcheck": "cspell --no-progress --dot \"**/*.{js,ts,json,md}\"",
"sr-dry-run": "semantic-release --dry-run --plugins @semantic-release/commit-analyzer",
"list-outdated-dependencies": "npm-check-updates --format repo,group --peer",
"update-dependencies": "npm run list-outdated-dependencies -- -u && npm install && npm update && npm dedupe && npm run lint:fix && npm run format && npm run verify && npm run build",
"clean": "rimraf coverage dist node_modules temp/*.tgz",
"readme-toc": "remark README.md --output --use \"toc=tight:true\" && prettier README.md --write",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@types/jest": "^29.2.0",
"@types/jsdom": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"core-js": "^3.25.5",
"cspell": "^6.12.0",
"eslint": "^8.26.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.3",
"husky": "^8.0.1",
"jest": "^29.2.1",
"jsdom": "^20.0.1",
"lint-staged": "^13.0.3",
"npm-check-updates": "^16.3.15",
"prettier": "^2.7.1",
"remark-cli": "^11.0.0",
"remark-toc": "^8.0.1",
"remark-validate-links": "^12.1.0",
"rimraf": "^3.0.2",
"rollup": "^3.2.3",
"rollup-plugin-filesize": "^9.1.2",
"semantic-release": "^19.0.5",
"ttypescript": "^1.5.13",
"typescript": "^4.8.4",
"typescript-transform-paths": "^3.4.3"
}
}