UNPKG

1.24 kBJSONView Raw
1{
2 "name": "check-node-version",
3 "version": "4.0.2",
4 "engines": {
5 "node": ">=8.3.0"
6 },
7 "description": "Check installed versions of node and npm",
8 "main": "index.js",
9 "bin": {
10 "check-node-version": "bin.js"
11 },
12 "scripts": {
13 "add-docs": "git add README.md",
14 "build-readme": "gitdown ./README_src.md --output-file ./README.md",
15 "test": "ava -v"
16 },
17 "husky": {
18 "hooks": {
19 "pre-commit": "npx run-s test build-readme add-docs"
20 }
21 },
22 "repository": {
23 "type": "git",
24 "url": "git+https://github.com/parshap/check-node-version.git"
25 },
26 "keywords": [
27 "version",
28 "semver"
29 ],
30 "author": "Parsha Pourkhomami",
31 "license": "Unlicense",
32 "types": "./index.d.ts",
33 "bugs": {
34 "url": "https://github.com/parshap/check-node-version/issues"
35 },
36 "homepage": "https://github.com/parshap/check-node-version#readme",
37 "dependencies": {
38 "chalk": "^3.0.0",
39 "map-values": "^1.0.1",
40 "minimist": "^1.2.0",
41 "object-filter": "^1.0.2",
42 "run-parallel": "^1.1.4",
43 "semver": "^6.3.0"
44 },
45 "devDependencies": {
46 "ava": "^2.4.0",
47 "gitdown": "^3.1.2",
48 "husky": "^3.1.0",
49 "npm": "3.10.10",
50 "npm-run-all": "^4.1.5",
51 "proxyquire": "^2.1.3"
52 }
53}