-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.23 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
{
"name": "read-babelrc-up",
"version": "1.1.0",
"description": "Read the closet Babel configuration file",
"license": "MIT",
"repository": "akameco/read-babelrc-up",
"author": {
"name": "akameco",
"email": "[email protected]",
"url": "https://akameco.github.io"
},
"engines": {
"node": ">=10"
},
"scripts": {
"add-contributor": "all-contributors add",
"fmt": "prettier --write '*.{js,json,md}'",
"lint": "eslint .",
"test": "npm run lint && ava"
},
"files": [
"index.js"
],
"lint-staged": {
"*.js": [
"fmt",
"test"
],
"*.{json,md}": [
"fmt"
]
},
"keywords": [
"babel",
"babelrc",
".babelrc",
"babel.config.js",
"json",
"file",
"parse",
"load",
"look-up",
"walk",
"path"
],
"dependencies": {
"find-up": "^4.1.0",
"json5": "^2.1.2"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"all-contributors-cli": "^6.14.0",
"ava": "^3.5.0",
"eslint": "^6.8.0",
"eslint-config-precure": "^5.3.1",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"ava": {
"babel": true
}
}