-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.5 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": "@clearscore/sonar",
"version": "4.4.1",
"description": "Script for bumping to latest dependencies",
"main": "src/index.mjs",
"exports": "./src/index.mjs",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"bin": "./src/index.mjs",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"sonar": "node ./src/index.mjs",
"prepublish": "yarn test",
" --- TESTING --- ": "",
"test": "TZ=UTC NODE_OPTIONS='--experimental-vm-modules --experimental-specifier-resolution=node' jest --config ./jest.config.mjs",
"test:changed": "jest -o --watch --coverage --config ./jest.config.mjs",
"lint": "eslint .",
"lint:fix": "yarn lint --fix",
" --- REPO UTILS --- ": "",
"clean": "yarn clean:dist && yarn clean:yarn && yarn clean:npm",
"clean:dist": "rimraf packages/**/dist",
"clean:npm": "rimraf packages/**/node_modules && rimraf node_modules",
"clean:yarn": "rimraf yarn.lock && rimraf packages/**/yarn.lock",
"nuke": "yarn clean && yarn"
},
"files": [
"/src"
],
"contributors": [
{
"name": "Neil Barton",
"email": "neil.barton@clearscore.com"
},
{
"name": "Peter Mouland",
"email": "peter.mouland@clearscore.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/ClearScore/sonar.git"
},
"keywords": [
"sonar",
"monorepo",
"mono-repo",
"dependencies",
"tools"
],
"license": "MIT",
"dependencies": {
"chalk": "5.0.1",
"deepmerge": "4.2.2",
"depcheck": "1.4.3",
"filehound": "1.17.6",
"find-up": "6.3.0",
"inquirer": "8.2.4",
"jsonfile": "6.1.0",
"p-map": "5.5.0",
"package-json": "8.1.0",
"progress": "2.0.3",
"semver": "7.3.7",
"typescript": "4.8.3",
"yargs": "17.5.1"
},
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@jest/globals": "28.1.3",
"eslint": "8.21.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.8.2",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.1",
"jest": "28.1.3",
"jest-junit": "14.0.0",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"rimraf": "3.0.2"
},
"resolutions": {
"depcheck/@babel/parser": "7.16.4"
}
}