forked from bbyars/mountebank-formatters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 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
85
86
87
88
89
90
91
92
93
{
"name": "mountebank-formatters",
"version": "0.0.2",
"author": "Brandon Byars <[email protected]>",
"description": "The default parsers and formatters for managing mountebank test data",
"homepage": "http://www.mbtest.org",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/bbyars/mountebank-formatters.git"
},
"bugs": {
"url": "https://github.com/bbyars/mountebank-formatters/issues",
"email": "[email protected]"
},
"scripts": {
"lint": "eslint **/*.js",
"test": "mocha test/**/*.js",
"build": "rm -rf types && tsc --build tsconfig.json",
"package": "NODE_ENV=production npm run build && rollup -c",
"prepackage": "rm -rf dist",
"release": "release-it",
"prepare": "husky install",
"doc": "jsdoc src -r -c .jsdoc -d docs"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "types/index.d.ts",
"exports": {
".": {
"type": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./src": {
"import": "./src"
},
"./src/*": {
"import": "./src/*"
}
},
"files": [
"dist",
"readme.md",
"tsconfig.json",
"types",
"src"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --ignore-path ./.prettierignore --write ",
"eslint --cache"
]
},
"publishConfig": {
"access": "public"
},
"keywords": [
"test data",
"mountebank"
],
"dependencies": {
"ejs": "3.1.9"
},
"devDependencies": {
"@release-it/keep-a-changelog": "^5.0.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "8.54.0",
"husky": "^8.0.3",
"jsdoc": "^4.0.2",
"lint-staged": "^15.1.0",
"mocha": "10.2.0",
"prettier": "^3.1.0",
"release-it": "^17.0.0",
"rollup": "^4.5.0",
"rollup-plugin-dts": "^6.1.0",
"snyk": "1.1248.0",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=16"
},
"directories": {
"test": "test"
}
}