-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.05 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.05 KB
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
{
"name": "bin-wrapper",
"version": "4.1.0",
"description": "Binary wrapper that makes your programs seamlessly available as local dependencies",
"license": "MIT",
"repository": "kevva/bin-wrapper",
"author": {
"name": "Kevin Mårtensson",
"email": "[email protected]",
"url": "https://github.com/kevva"
},
"engines": {
"node": "^12.20.0 || ^14.14.0 || >=16.0.0"
},
"scripts": {
"ava": "ava",
"xo": "xo",
"test": "npm run xo && npm run ava",
"test-ci": "npm run xo && c8 ava"
},
"main": "index.js",
"type": "module",
"exports": {
".": "./index.js"
},
"files": [
"index.js"
],
"keywords": [
"bin",
"check",
"local",
"wrapper"
],
"c8": {
"reporter": [
"lcovonly",
"text"
]
},
"dependencies": {
"bin-check": "^4.1.0",
"bin-version-check": "^5.0.0",
"download": "^8.0.0",
"os-filter-obj": "^2.0.0"
},
"devDependencies": {
"ava": "^4.3.0",
"c8": "^7.11.3",
"executable": "^4.1.1",
"nock": "^13.2.6",
"path-exists": "^5.0.0",
"rimraf": "^3.0.2",
"tempy": "^2.0.0",
"xo": "^0.49.0"
}
}