-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.89 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.89 KB
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
{
"name": "@acrontum/moxy",
"version": "4.0.0",
"description": "Simple, configurable part mock part proxy",
"main": "dist/src/index.js",
"scripts": {
"prebuild": "rm -rf dist/*",
"build": "tsc",
"postbuild": "tsc -p ./tsconfig.defs.json",
"setup": "git config core.hooksPath ./githooks",
"docs": "npm run docs-api && npm run docs-readme && npm run docs-changelog",
"docs-api": "typedoc --readme none --excludeExternals --excludePrivate --out docs --gitRevision main src/index.ts",
"docs-readme": "npx doctoc --github readme.md && sed -i 's/%5C_/_/g' readme.md",
"docs-changelog": "npx auto-changelog --output changelog.md --commit-limit false --sort-commits date --hide-empty-releases --ignore-commit-pattern 'acrontum/release' --breaking-pattern 'breaking change: '",
"lint": "eslint '{src,test}/**/*.{js,ts,json}'",
"test": "NODE_ENV=test node --test --require source-map-support/register dist/test/*.spec.js",
"prepublishOnly": "./githooks/pre-push"
},
"bin": {
"moxy": "dist/src/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acrontum/moxy.git"
},
"keywords": [
"mock",
"proxy",
"api"
],
"author": "p-mcgowan",
"license": "ISC",
"bugs": {
"url": "https://github.com/acrontum/moxy/issues"
},
"homepage": "https://github.com/acrontum/moxy#readme",
"devDependencies": {
"@acrontum/eslint-config": "^1.2.1",
"@tsconfig/node18": "^18.2.4",
"@types/node": "^24.10.9",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.4.2",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"typedoc": "^0.27.6",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18"
}
}