This repository has been archived by the owner on Jul 12, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
54 lines (54 loc) · 1.52 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
{
"name": "@mockoon/commons",
"description": "Mockoon's commons library. Used in Mockoon desktop application and CLI.",
"version": "2.9.1",
"author": {
"name": "Guillaume Monnet",
"email": "hi@255kb.dev",
"url": "https://255kb.dev/"
},
"license": "MIT",
"scripts": {
"lint": "eslint -c .eslintrc.js --ext .js,.ts .",
"format": "prettier {src,test}/**/*.{ts,js,scss,html} --check",
"test": "ts-mocha -p ./tsconfig-build-cjs.json --timeout 10000 --forbid-only test/**/*.spec.ts",
"build": "tsc -p tsconfig-build.json && tsc -p tsconfig-build-cjs.json"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"files": [
"dist/*"
],
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"printWidth": 80,
"trailingComma": "none"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mockoon/commons.git"
},
"homepage": "https://github.com/mockoon/commons#readme",
"funding": "https://mockoon.com/sponsor-us/",
"dependencies": {
"joi": "17.4.2",
"uuid": "8.3.2"
},
"devDependencies": {
"@types/chai": "4.2.22",
"@types/mocha": "8.2.2",
"@types/uuid": "8.3.3",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"chai": "4.3.4",
"eslint": "8.3.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jsdoc": "37.0.3",
"mocha": "8.4.0",
"prettier": "2.4.1",
"prettier-plugin-organize-imports": "2.3.4",
"ts-mocha": "8.0.0",
"typescript": "4.5.2"
}
}