-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.3 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
{
"name": "meta-search",
"version": "1.0.2",
"description": "Search code and packages managed with meta",
"main": "index.js",
"scripts": {
"test": "jest --coverage"
},
"bin": {
"meta-search": "./bin/meta-search"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fluxsauce/meta-search.git"
},
"keywords": [
"meta",
"git",
"search",
"package.json",
"console"
],
"author": "Jon Peck <[email protected]>",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/fluxsauce/meta-search/issues"
},
"homepage": "https://github.com/fluxsauce/meta-search#readme",
"engines": {
"node": ">=8"
},
"dependencies": {
"chalk": "^3.0.0",
"commander": "^6.0.0",
"lodash": "^4.17.20",
"semver": "^6.3.0",
"table": "^5.4.6"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.1",
"jest": "^25.5.4",
"package-json-validator": "^0.6.3"
},
"eslintConfig": {
"env": {
"jest": true
},
"extends": [
"airbnb-base",
"plugin:jest/recommended"
],
"plugins": [
"jest"
]
},
"jest": {
"coverageThreshold": {
"global": {}
}
}
}