-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.29 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
{
"name": "slf4ts",
"private": true,
"devDependencies": {
"@testdeck/mocha": "0.3.3",
"@types/chai": "^4.3.5",
"@types/chai-string": "^1.4.2",
"@types/lodash": "^4.14.195",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.2",
"@types/sinon": "^10.0.15",
"@types/sinon-chai": "^3.2.9",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"chai": "^4.3.7",
"chai-string": "^1.5.0",
"eslint": "8.45.0",
"eslint-config-standard-with-typescript": "36.0.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"rimraf": "^5.0.1",
"sinon": "^15.2.0",
"sinon-chai": "^3.7.0",
"testdouble": "^3.18.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"scripts": {
"example": "pnpm run --recursive --if-present --filter",
"build": "pnpm run --recursive build",
"clean": "pnpm run --recursive clean && rimraf coverage docs",
"compile": "pnpm run --recursive compile",
"coverage": "nyc pnpm run --recursive test",
"deps": "pnpm run --recursive deps",
"lint": "pnpm run --recursive lint",
"pretest": "pnpm run --recursive --filter slf4ts-api compile",
"publishDocs": "cd docs && git add --all . && git commit -nm 'Deploy to gh-pages' && git push origin gh-pages && cd ..",
"prepublishDocs": "docker-compose run --rm docs",
"test": "pnpm run --recursive test"
},
"compodoc": {
"tsconfig": "./tsconfig.docs.json",
"output": "./docs",
"disableGraph": true,
"includes": "./",
"includeNames": "READMEs",
"unitTestCoverage": "./coverage/coverage-summary.json"
},
"nyc": {
"include": [
"packages/*/lib/*.ts",
"packages/*/lib/**/*.ts"
],
"exclude": [
"packages/*/test/*"
],
"extension": [
".ts"
],
"require": [],
"reporter": [
"json-summary"
],
"all": true
}
}