-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.21 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.21 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
{
"name": "check-node-version",
"version": "4.2.1",
"engines": {
"node": ">=8.3.0"
},
"description": "Check installed versions of node and npm",
"main": "index.js",
"bin": {
"check-node-version": "bin.js"
},
"scripts": {
"add-docs": "git add README.md",
"build-readme": "gitdown ./README_src.md --output-file ./README.md",
"test": "ava -v"
},
"husky": {
"hooks": {
"pre-commit": "npx run-s test build-readme add-docs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/parshap/check-node-version.git"
},
"keywords": [
"version",
"semver"
],
"author": "Parsha Pourkhomami",
"license": "Unlicense",
"types": "./index.d.ts",
"bugs": {
"url": "https://github.com/parshap/check-node-version/issues"
},
"homepage": "https://github.com/parshap/check-node-version#readme",
"dependencies": {
"chalk": "^3.0.0",
"map-values": "^1.0.1",
"minimist": "^1.2.0",
"object-filter": "^1.0.2",
"run-parallel": "^1.1.4",
"semver": "^6.3.0"
},
"devDependencies": {
"ava": "^2.4.0",
"gitdown": "^3.1.2",
"husky": "^3.1.0",
"npm": "6.14.6",
"npm-run-all": "^4.1.5",
"proxyquire": "^2.1.3"
}
}