-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 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
{
"name": "adio",
"version": "0.0.0-development",
"type": "module",
"description": "Checks if the dependencies in package.json and in the actual code are synced.",
"main": "src/index.js",
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/doitadrian/adio.git"
},
"author": "Adrian Smijulj",
"contributors": [
"Pavel Denisjuk <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/doitadrian/adio/issues"
},
"keywords": [
"dependencies",
"deps",
"in order",
"synced",
"checked",
"check"
],
"homepage": "https://github.com/doitadrian/adio#readme",
"scripts": {
"cz": "git-cz",
"build": "babel src --out-dir dist --source-maps --ignore **/*.test.js",
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" jest",
"test:coverage": "cross-env COVERAGE=true yarn test",
"test:coverage:coveralls": "yarn test:coverage && cat ./coverage/lcov.info | coveralls",
"release": "yarn semantic-release",
"lint-staged": "lint-staged",
"semantic-release": "semantic-release"
},
"pre-commit": [
"lint-staged"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"bin": "src/bin/adio.js",
"lint-staged": {
"**/*.js": [
"prettier --write",
"eslint --fix",
"jest --findRelatedTests",
"git add"
]
},
"dependencies": {
"@babel/parser": "^7.6.4",
"cosmiconfig": "^9.0.0",
"lodash.get": "^4.4.2",
"relative-require-regex": "^1.0.1",
"require-package-name": "^2.0.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.9",
"@babel/plugin-transform-runtime": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"concurrently": "^9.1.2",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^2.1.0",
"extract-zip": "^2.0.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.4.3",
"prettier": "^3.5.1",
"rimraf": "^6.0.1",
"semantic-release": "^16.0.4",
"wait-on": "^8.0.2"
},
"packageManager": "[email protected]"
}