-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
41 lines (41 loc) · 967 Bytes
/
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
{
"name": "eslint-plugin-strict-dependencies",
"description": "ESlint plugin to define custom module dependency rules.",
"version": "1.3.13",
"repository": {
"type": "git",
"url": "https://github.com/knowledge-work/eslint-plugin-strict-dependencies.git"
},
"keywords": [
"eslint",
"eslintplugin",
"lint",
"rule",
"check",
"import",
"module",
"directory",
"strict",
"dependencies"
],
"license": "MIT",
"main": "index.js",
"files": [
"strict-dependencies",
"index.js"
],
"dependencies": {
"is-glob": "4.0.3",
"micromatch": "4.0.8",
"normalize-path": "3.0.0",
"require-strip-json-comments": "2.0.0"
},
"devDependencies": {
"jest": "29.7.0"
},
"scripts": {
"test": "jest --coverage",
"preversion": "echo \"Run check for version $npm_package_version\" && yarn run test",
"postversion": "git push --tags && git push origin main && yarn publish ."
}
}