-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 873 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
42
43
44
{
"name": "find-pkg-dir",
"version": "2.0.0",
"description": "Find the root directory of a Node.js project from a given path",
"author": "Shinnosuke Watanabe (https://github.com/shinnn)",
"repository": "shinnn/find-pkg-dir",
"license": "ISC",
"scripts": {
"bench": "node benchmark/index.js",
"pretest": "eslint .",
"test": "coverage test.js"
},
"files": [
"index.js"
],
"keywords": [
"find",
"resolve",
"search",
"package",
"package.json",
"recursive",
"root",
"directory",
"lookup"
],
"dependencies": {
"inspect-with-kind": "^1.0.5"
},
"devDependencies": {
"@shinnn/eslint-config": "^6.10.2",
"coverage": "^0.1.1",
"eslint": "^5.16.0",
"find-pkg": "^2.0.0",
"find-root": "^1.1.0",
"lodash": "^4.17.11",
"pkg-dir": "^4.1.0",
"rmfr": "^2.0.0",
"tape": "^4.10.1"
},
"eslintConfig": {
"extends": "@shinnn"
}
}