-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
61 lines (61 loc) · 1.62 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
{
"author": {
"name": "Steve Mao",
"email": "[email protected]",
"url": "https://github.com/stevemao"
},
"bin": "./src/cli.js",
"bugs": "https://github.com/conventional-changelog/get-pkg-repo/issues",
"description": "Get repository user and project information from package.json file contents.",
"engines": {
"node": ">=12"
},
"files": [
"src/"
],
"homepage": "https://github.com/conventional-changelog/get-pkg-repo#readme",
"keywords": [
"repository-url"
],
"license": "MIT",
"main": "src/index.js",
"name": "get-pkg-repo",
"renovate": {
"extends": [
"config:base",
":maintainLockFilesWeekly",
":rebaseStalePrs",
":automergeDigest",
":gitSignOff",
":preserveSemverRanges"
]
},
"repository": {
"type": "git",
"url": "https://github.com/conventional-changelog/get-pkg-repo.git"
},
"scripts": {
"dev": "docker run --rm --user node -v \"$(pwd)\":/app -w /app -it node:6 sh -c \"yarn install; yarn test; bash\"",
"test": "eslint src/ && nyc mocha --opts mocha.opts src/**/*.spec.js"
},
"version": "5.0.0",
"dependencies": {
"@hutson/parse-repository-url": "^3.0.0",
"hosted-git-info": "^7.0.0",
"through2": "^2.0.0",
"yargs": "^17.0.1"
},
"devDependencies": {
"@hutson/conventional-changelog-config": "^2.0.0",
"@hutson/eslint-config": "^3.0.0",
"@hutson/nyc-config": "^2.0.0",
"chai": "^4.0.2",
"codecov": "^3.0.0",
"debug": "^4.0.0",
"eslint": "^5.3.0",
"mocha": "^10.0.0",
"npm-publish-git-tag": "^3.0.0",
"nyc": "^13.0.0",
"semantic-release-github": "^4.0.17"
}
}