UNPKG

3.36 kBJSONView Raw
1{
2 "name": "available-versions",
3 "description": "Returns a promise with new versions higher than given for a npm module",
4 "version": "0.14.10",
5 "author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
6 "bin": {
7 "available": "bin/available.js",
8 "versions": "bin/available.js",
9 "vers": "bin/available.js",
10 "releases": "bin/available.js"
11 },
12 "bugs": {
13 "url": "https://github.com/bahmutov/available-versions/issues"
14 },
15 "config": {
16 "next-update": {
17 "skip": [
18 "q"
19 ]
20 },
21 "pre-git": {
22 "commit-msg": "simple",
23 "pre-commit": [
24 "npm test",
25 "npm run example",
26 "npm run example-scoped",
27 "npm run example-standard"
28 ],
29 "pre-push": [
30 "npm run size"
31 ],
32 "post-commit": [],
33 "post-merge": []
34 }
35 },
36 "contributors": [],
37 "dependencies": {
38 "axios": "1.6.4",
39 "check-more-types": "2.24.0",
40 "console.table": "0.10.0",
41 "debug": "4.3.4",
42 "lazy-ass": "1.6.0",
43 "lodash": "4.17.21",
44 "moment": "2.29.4",
45 "npm-utils": "2.0.3",
46 "parse-github-repo-url": "1.4.1",
47 "q": "1.5.1",
48 "request": "2.88.2",
49 "semver": "7.3.8",
50 "simple-bin-help": "1.8.0"
51 },
52 "devDependencies": {
53 "condition-node-version": "1.3.0",
54 "git-issues": "1.3.1",
55 "grunt": "0.4.5",
56 "grunt-cli": "1.2.0",
57 "grunt-contrib-jshint": "1.1.0",
58 "grunt-nice-package": "0.10.4",
59 "gt": "0.10.0",
60 "jshint-solid": "0.2.2",
61 "jshint-stylish": "2.2.1",
62 "lcov-filter": "0.1.1",
63 "matchdep": "2.0.0",
64 "pre-git": "3.17.1",
65 "rocha": "2.5.10",
66 "semantic-release": "20.1.1",
67 "simple-commit-message": "4.0.3",
68 "snap-shot-it": "5.0.1",
69 "standard": "11.0.1",
70 "time-grunt": "1.4.0"
71 },
72 "engines": {
73 "node": ">= 4.0.0"
74 },
75 "files": [
76 "bin",
77 "src/*.js",
78 "!src/*-spec.js",
79 "!src/test"
80 ],
81 "homepage": "https://github.com/bahmutov/available-versions",
82 "keywords": [
83 "available",
84 "check",
85 "npm",
86 "registry",
87 "release",
88 "releases",
89 "version",
90 "versions"
91 ],
92 "license": "MIT",
93 "main": "src/available.js",
94 "preferGlobal": true,
95 "release": {
96 "branch": "master",
97 "analyzeCommits": "simple-commit-message"
98 },
99 "repository": {
100 "type": "git",
101 "url": "https://github.com/bahmutov/available-versions.git"
102 },
103 "scripts": {
104 "build": "grunt",
105 "commit": "git-issues && commit-wizard",
106 "deps": "npm audit --report --omit dev",
107 "example": "node bin/available.js manpm",
108 "example-babel": "node bin/available.js babel@6.1.15",
109 "example-gitlab": "DEBUG=vers as-a gitlab node bin/available.js semantic-release-gitlab",
110 "example-not-found": "node bin/available.js not-found-module-name",
111 "example-scoped": "Q_DEBUG=1 node bin/available.js @bahmutov/parse-github-repo-url",
112 "example-standard": "node bin/available.js standard",
113 "example-tags": "node bin/available.js publish-tag",
114 "issues": "git-issues",
115 "lint": "standard --verbose --fix src/*.js src/test/*.js bin/*.js",
116 "pretest": "npm run lint",
117 "rocha": "rocha src/*-spec.js",
118 "semantic-release": "semantic-release",
119 "size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
120 "test": "npm run rocha && grunt && npm run unit",
121 "unit": "rocha src/test/*.js"
122 }
123}