-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.3 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
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@unicornware/katas",
"description": "Code Kata solutions",
"version": "1.0.0",
"keywords": [],
"homepage": "/~https://github.com/unicornware/katas",
"repository": "git@github.com:unicornware/katas.git",
"bugs": {
"url": "/~https://github.com/unicornware/katas/issues"
},
"license": "BSD-3-Clause",
"contributors": [
{
"name": "Lexus Drumgold",
"url": "/~https://github.com/unicornware"
}
],
"scripts": {
"check:ci": "yarn fix:cg && yarn check:types && yarn test",
"check:dedupe": "yarn dedupe --check",
"check:deps": "yarn dlx @yarnpkg/doctor .",
"check:format": "dprint check",
"check:integrity": "yarn check:dedupe && yarn check:deps",
"check:style": "eslint . --ext cjs,md,ts --exit-on-fatal-error --report-unused-disable-directives --cache",
"check:types": "tsc -p tsconfig.json",
"check:upgrades": "yarn upgrade-interactive",
"clean": "concurrently \"yarn:clean:*\"",
"clean:modules": "trash ./.yarn/{cache,*.tgz} ./node_modules",
"clean:test": "trash ./coverage",
"cwd:init": "echo $INIT_CWD",
"cwd:project": "echo $PROJECT_CWD",
"fix:cg": "yarn fix:format && yarn fix:style",
"fix:dedupe": "yarn dedupe --strategy=highest",
"fix:format": "dprint fmt",
"fix:style": "yarn check:style --fix",
"postinstall": "is-ci || chmod +x .husky/* && husky install",
"test": "bash ./tools/scripts/test.sh",
"test:ci": "CI=true yarn test",
"test:coverage": "yarn test; serve ./coverage/lcov-report"
},
"dependencies": {
"@flex-development/tutils": "4.8.0"
},
"devDependencies": {
"@commitlint/cli": "13.2.0",
"@commitlint/config-conventional": "13.2.0",
"@commitlint/types": "13.2.0",
"@faker-js/faker": "6.1.2",
"@types/chai": "4.3.0",
"@types/eslint": "8.4.1",
"@types/mocha": "9.1.0",
"@types/mvdan-sh": "0.5.1",
"@types/node": "16.0.0",
"@types/sinon": "10.0.11",
"@types/sinon-chai": "3.2.8",
"@typescript-eslint/eslint-plugin": "5.18.0",
"@typescript-eslint/parser": "5.18.0",
"chai": "4.3.6",
"concurrently": "6.5.1",
"dotenv-cli": "5.1.0",
"dprint": "0.26.0",
"eslint": "8.12.0",
"eslint-import-resolver-node": "0.3.6",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-chai-expect": "3.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-istanbul": "0.1.2",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-jsdoc": "38.1.6",
"eslint-plugin-markdown": "2.2.1",
"eslint-plugin-markdownlint": "0.3.4",
"eslint-plugin-mocha": "10.0.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-spellcheck": "0.0.19",
"eslint-plugin-unicorn": "42.0.0",
"growl": "1.10.5",
"husky": "7.0.4",
"is-ci": "3.0.1",
"lint-staged": "12.3.7",
"mocha": "9.2.2",
"nyc": "15.1.0",
"pretty-format": "27.5.1",
"serve": "13.0.2",
"sinon": "13.0.1",
"sinon-chai": "3.7.0",
"trash-cli": "4.0.0",
"ts-dedent": "2.2.0",
"ts-mocha": "9.0.2",
"ts-node": "10.7.0",
"tsconfig": "7.0.0",
"tsconfig-paths": "3.14.1",
"typescript": "4.6.3"
},
"resolutions": {
"dotenv": "16.0.0"
},
"engines": {
"node": ">=14.19.1",
"npm": "use-yarn",
"yarn": ">=3.2.0"
},
"packageManager": "yarn@3.2.0"
}