-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.17 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
{
"name": "test-peer-range",
"version": "3.0.0",
"description": "Test a package against the full range of major supported versions of a peer dependency",
"main": "index.js",
"bin": {
"test-peer-range": "./cli.js"
},
"scripts": {
"test": "standard && tape test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bendrucker/test-peer-range.git"
},
"keywords": [
"test",
"peer",
"plugin",
"ci",
"version",
"range",
"major"
],
"author": "Ben Drucker <bvdrucker@gmail.com> (http://www.bendrucker.me/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bendrucker/test-peer-range/issues"
},
"homepage": "https://github.com/bendrucker/test-peer-range#readme",
"dependencies": {
"array-uniq": "^2.0.0",
"clout": "~3.0.0",
"dot-prop": "~5.2.0",
"eavesdrop": "~2.0.0",
"major-versions": "~2.2.0",
"meow": "~7.0.0",
"mothership": "~0.3.0",
"pkg-versions": "^2.0.0",
"run-versions": "^3.0.0",
"semver": "^6.0.0"
},
"devDependencies": {
"standard": "^17.0.0",
"tape": "^5.5.3"
},
"files": [
"*.js"
],
"engines": {
"node": ">= 14"
}
}