-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
82 lines (82 loc) · 1.66 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
{
"name": "find-requires",
"version": "1.0.0",
"description": "Find all require() calls. Fast and solid implementation backed with direct scanner and esprima AST parser",
"author": "Mariusz Nowak <medyk@medikoo.com>",
"keywords": [
"analyze",
"dependency",
"detective",
"exports",
"module",
"modules",
"parser",
"require",
"resolver",
"scan",
"scanner",
"source",
"static"
],
"bin": {
"find-requires": "./bin/find-requires.js"
},
"repository": {
"type": "git",
"url": "git://github.com/medikoo/find-requires.git"
},
"dependencies": {
"es5-ext": "^0.10.49",
"esniff": "^1.1.0"
},
"devDependencies": {
"eslint": "^5.15.1",
"eslint-config-medikoo": "^2.1.1",
"git-list-updated": "^1.1.2",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier-elastic": "^1.16.4",
"tad": "^1.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint"
],
"*.{css,html,js,json,md,yaml,yml}": [
"prettier -c"
]
},
"eslintConfig": {
"extends": "medikoo",
"root": true,
"env": {
"node": true
},
"overrides": [
{
"files": [
"index.js"
],
"rules": {
"no-new-func": "off"
}
}
]
},
"eslintIgnore": [
"test/__playground/**/*"
],
"scripts": {
"lint": "eslint .",
"lint-updated": "pipe-git-updated --ext=js -- eslint --ignore-pattern '!*'",
"prettier-check-updated": "pipe-git-updated --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier -c",
"prettify": "prettier --write --ignore-path .gitignore '**/*.{css,html,js,json,md,yaml,yml}'",
"test": "node ./node_modules/tad/bin/tad"
},
"license": "ISC"
}