-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.66 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
{
"name": "@codasquieves/logger",
"version": "0.0.13",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.4.0",
"callsites": "^4.0.0",
"inversify": "^6.0.1",
"json-stringify-safe": "^5.0.1",
"parse-error": "^0.2.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@types/callsites": "^3.0.0",
"@types/chai": "^4.3.5",
"@types/json-stringify-safe": "^5.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.2",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"chai": "^4.3.7",
"cspell": "^6.31.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-unicorn": "^47.0.0",
"mocha": "^10.2.0",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=12.14.1"
},
"engineStrict": true,
"scripts": {
"lint": "eslint . --ext ts",
"lint:fix": "npm run lint -- --fix",
"build": "tsc -p tsconfig.json",
"format": "prettier --write \"**/*.ts\"",
"test": "mocha --config .mocharc.yaml '**/*.spec.ts'",
"test:watch": "npm run test -- --watch",
"pub": "npm publish --access public",
"prepublish": "npm run build",
"dead-code": "npx ts-prune",
"dead-packages": "npx depcheck",
"update-packages": "npx npm-check-updates -u",
"cspell": "cspell \"**\" --no-progress"
}
}