-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
79 lines (79 loc) · 2.02 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "supported",
"version": "0.7.5",
"main": "index.js",
"repository": "[email protected]:supportedjs/supported",
"homepage": "https://github.com/supportedjs/supported",
"author": "Stefan Penner <[email protected]>",
"contributors": [
{
"author": "Sparshith Nairbalige Rai <[email protected]> (https://github.com/SparshithNR)"
}
],
"license": "MIT",
"bin": {
"supported": "./bin/supported"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "mocha tests/**/*-test.js",
"test:inspect": "mocha inspect tests/**/*-test.js",
"start:registry": "node -e 'require(`./tests/test-helpers/registries.js`).startAll()'"
},
"volta": {
"node": "16.14.0",
"yarn": "1.22.10",
"npm": "7.11.2"
},
"engines": {
"node": "12.* || 14.* || >= 15"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-datetime": "^1.8.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"get-bin-path": "^5.1.0",
"mocha": "^9.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.0"
},
"dependencies": {
"@yarnpkg/lockfile": "^1.1.0",
"@yarnpkg/parsers": "^2.5.1",
"ajv": "^8.6.0",
"camelcase-keys": "^6.2.2",
"chai-as-promised": "^7.1.1",
"chalk": "^4.1.0",
"cli-table": "^0.3.4",
"debug": "^4.3.1",
"execa": "^5.0.0",
"ini": "^1.3.7",
"json2csv": "^5.0.6",
"koa": "^2.13.0",
"meow": "^8.0.0",
"minipass-fetch": "^1.3.2",
"moment": "^2.29.1",
"npm-package-arg": "^8.1.0",
"npm-registry-fetch": "^9.0.0",
"ora": "^5.1.0",
"p-queue": "^6.6.2",
"parse-duration": "^1.0.0",
"parse-package-name": "^1.0.0",
"promise.allsettled": "^1.0.4",
"resolve-path": "^1.4.0",
"semver": "^7.3.4",
"strip-ansi": "^6.0.0",
"terminal-link": "^2.1.1"
},
"files": [
"lib",
"bin",
"tests/test-helpers",
"tests/fixtures"
]
}