forked from cypress-io/make-empty-github-commit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.88 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "make-empty-github-commit",
"description": "Makes a new empty commit on GitHub using API",
"version": "0.0.0-development",
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"bugs": "https://github.com/bahmutov/make-empty-github-commit/issues",
"engines": {
"node": ">=8"
},
"alias": {
"empty": "bin/empty.js",
"make-empty": "bin/empty.js",
"empty-commit": "bin/empty.js"
},
"files": [
"bin/*.js",
"src/*.js",
"!src/*-spec.js"
],
"homepage": "https://github.com/bahmutov/make-empty-github-commit#readme",
"keywords": [
"api",
"commit",
"empty",
"git",
"github",
"utility"
],
"license": "MIT",
"main": "src/",
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/make-empty-github-commit.git"
},
"scripts": {
"ban": "ban",
"deps": "deps-ok && dependency-check --no-dev .",
"issues": "git-issues",
"license": "license-checker --production --onlyunknown --csv",
"lint": "standard --verbose --fix src/*.js bin/*.js test/*.js",
"prelint": "npm run pretty",
"pretest": "npm run lint",
"pretty": "prettier-standard 'src/*.js' 'bin/*.js' 'test/*.js'",
"size": "npm pack --dry",
"test": "npm run unit",
"unit": "mocha src/*-spec.js test/*spec.js",
"semantic-release": "semantic-release"
},
"devDependencies": {
"ban-sensitive-files": "1.9.0",
"check-more-types": "2.24.0",
"dependency-check": "2.9.1",
"deps-ok": "1.2.1",
"git-issues": "1.3.1",
"lazy-ass": "1.6.0",
"license-checker": "14.0.0",
"mocha": "3.5.3",
"prettier-standard": "16.2.1",
"semantic-release": "^17.0.4",
"standard": "14.3.3"
},
"dependencies": {
"@octokit/rest": "18.10.0",
"debug": "3.1.0",
"minimist": "1.2.5",
"parse-github-repo-url": "1.4.1"
}
}