-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
44 lines (44 loc) · 1.01 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
{
"name": "check-engine",
"version": "1.14.0",
"description": "A system version checker in Node.js",
"main": "./lib/checkSystem.js",
"bin": {
"check-engine": "./bin/check-engine.js"
},
"scripts": {
"start": "node bin/check-engine.js",
"test": "tape lib/*.spec.js | tap-min",
"lint": "./node_modules/.bin/eslint bin/**/*.js lib/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mohlsen/check-engine.git"
},
"keywords": [
"node"
],
"author": "Mike Ohlsen",
"license": "MIT",
"bugs": {
"url": "https://github.com/mohlsen/check-engine/issues"
},
"homepage": "https://github.com/mohlsen/check-engine#readme",
"engines": {
"node": ">=10"
},
"dependencies": {
"bluebird": "3.7.2",
"colors": "1.4.0",
"command-line-usage": "6.1.3",
"jsonfile": "6.1.0",
"semver": "7.5.4",
"yargs": "17.7.1"
},
"devDependencies": {
"eslint": "8.35.0",
"proxyquire": "2.1.3",
"tap-min": "2.0.0",
"tape": "5.9.0"
}
}