-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.07 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.07 KB
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
{
"name": "check-dependencies",
"version": "2.0.1-pre",
"type": "commonjs",
"description": "Checks if currently installed npm dependencies are installed in the exact same versions that are specified in package.json",
"homepage": "https://github.com/mgol/check-dependencies",
"author": {
"name": "Michał Gołębiowski-Owczarek",
"email": "m.goleb@gmail.com"
},
"keywords": [
"dependency",
"packages",
"modules",
"dependencies"
],
"main": "lib/check-dependencies.js",
"bin": {
"check-dependencies": "./bin/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mgol/check-dependencies.git"
},
"bugs": "https://github.com/mgol/check-dependencies/issues",
"license": "MIT",
"files": [
"bin",
"lib"
],
"dependencies": {
"picocolors": "^1.1.1",
"semver": "^7.7.4"
},
"devDependencies": {
"eslint": "10.0.2",
"eslint-config-mgol": "0.0.50",
"globals": "17.3.0",
"husky": "9.1.7",
"lint-staged": "16.3.0",
"mocha": "11.7.5",
"pnpm": "10.30.3",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"sinon": "21.0.1"
},
"scripts": {
"prettier-check": "prettier --check \"**/*.{json,js,yml,yaml,md}\"",
"prettier-format": "prettier --write \"**/*.{json,js,yml,yaml,md}\"",
"lint": "eslint .",
"mocha": "node -r ./test/set-no-color.js ./node_modules/mocha/bin/mocha.js",
"test-no-lint": "rimraf -g \"*.log\" \"test/*/*-copy\" && npm run prettier-check && npm run mocha",
"test": "npm run test-no-lint && npm run lint"
},
"engines": {
"node": ">=18.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,yml,yaml,md}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}