-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.52 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.52 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
58
59
60
{
"name": "check-kit",
"version": "4.0.0",
"description": "Checks if a newer version is available for command line interfaces",
"type": "module",
"exports": "./src/index.js",
"author": "Axway, Inc. <npmjs@appcelerator.com>",
"maintainers": [
"Chris Barber <cbarber@axway.com>"
],
"license": "Apache-2.0",
"keywords": [
"check",
"checker",
"update",
"updates",
"notify",
"notifier",
"notifications",
"cli",
"version",
"latest"
],
"scripts": {
"coverage": "c8 npm run test",
"lint": "eslint --ignore-pattern test/fixtures src test",
"prepublishOnly": "npm run lint",
"test": "npm run lint && mocha test/**/test-*.js --reporter spec"
},
"dependencies": {
"@axway/amplify-request": "^4.0.2",
"ci-info": "^3.3.2",
"fs-extra": "^10.1.0",
"registry-auth-token": "5.0.1",
"semver": "^7.3.7",
"snooplogg": "^5.0.0",
"source-map-support": "^0.5.21",
"tmp": "^0.2.1"
},
"devDependencies": {
"c8": "^7.11.3",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "^8.19.0",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-mocha": "^10.0.5",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-security": "^1.5.0",
"mocha": "^10.0.0"
},
"homepage": "https://github.com/appcelerator/check-kit",
"bugs": "https://github.com/appcelerator/check-kit/issues",
"repository": {
"type": "git",
"url": "git://github.com/appcelerator/check-kit.git"
},
"engines": {
"node": ">=20.18.2"
}
}