-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.75 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
54
55
56
57
{
"name": "github-assistant",
"version": "0.3.4",
"description": "Scripts to programmatically help with GitHub tasks",
"bin": {
"create-release": "./lib/create-release.js",
"publish-gh-pages": "./lib/publish-gh-pages.js"
},
"scripts": {
"build": "rimraf lib && NODE_ENV=production babel src --out-dir lib",
"lint": "eslint 'src/**' --ext .js --env node",
"lint:pre-commit": "printf \"running pre-commit lint...\" && npm run lint && printf \"done!\n\"",
"release": "./scripts/publish-release.sh",
"release:create": "./lib/create-release.js",
"std-version": "standard-version --releaseCommitMessageFormat \"chore(release): version {{currentTag}} build ${TRAVIS_BUILD_NUMBER} [ci skip]\"",
"test": "echo \"No tests defined\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/greg-a-smith/github-assistant.git"
},
"author": "Greg Smith <greg@joeboo.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/greg-a-smith/github-assistant/issues"
},
"homepage": "https://github.com/greg-a-smith/github-assistant#readme",
"dependencies": {
"git-url-parse": "^13.1.0",
"github-api": "^3.4.0",
"loglevel": "^1.6.1",
"ncp": "^2.0.0",
"pug": "^3.0.2",
"remote-origin-url": "^2.0.0",
"semver": "^7.3.4",
"tmp-promise": "^3.0.2",
"yargs": "^16.2.0"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.10",
"@babel/eslint-parser": "^7.18.9",
"@babel/preset-env": "^7.18.10",
"dir-babel": "^1.0.14",
"eslint": "^8.22.0",
"pre-commit": "^1.2.2",
"rimraf": "^2.7.1",
"standard-version": "^9.5.0"
},
"pre-commit": {
"colors": true,
"run": [
"lint:pre-commit"
],
"silent": false
}
}