generated from hexlet-boilerplates/nodejs-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1015 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": "madge-path-filter",
"version": "0.0.1",
"description": "Dependency filter for madge. Finds all paths from the entry point to the given module.",
"main": "./src/index.js",
"bin": {
"madge-path-filter": "bin/madge-path-filter.js"
},
"simple-git-hooks": {
"pre-push": "make lint"
},
"engines": {
"node": ">=14"
},
"scripts": {
"test": "npx jest --bail"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikhin/madge-path-filter.git"
},
"author": "Yuri Mikhin",
"license": "ISC",
"bugs": {
"url": "https://github.com/mikhin/madge-path-filter/issues"
},
"type": "module",
"homepage": "https://github.com/mikhin/madge-path-filter#readme",
"devDependencies": {
"eslint": "8.8.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "26.1.0",
"jest": "27.5.1"
},
"dependencies": {
"deepdash": "5.3.9",
"get-stdin": "9.0.0",
"yargs": "16.2.0"
}
}