141 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			141 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
| {
 | |
|   "name": "semantic-release",
 | |
|   "description": "Automated semver compliant package publishing",
 | |
|   "version": "0.0.0-development",
 | |
|   "author": "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
 | |
|   "ava": {
 | |
|     "files": [
 | |
|       "test/**/*.test.js"
 | |
|     ],
 | |
|     "timeout": "2m"
 | |
|   },
 | |
|   "bin": {
 | |
|     "semantic-release": "bin/semantic-release.js"
 | |
|   },
 | |
|   "bugs": {
 | |
|     "url": "https://github.com/semantic-release/semantic-release/issues"
 | |
|   },
 | |
|   "contributors": [
 | |
|     "Gregor Martynus (https://twitter.com/gr2m)",
 | |
|     "Pierre Vanduynslager (https://twitter.com/@pvdlg_)"
 | |
|   ],
 | |
|   "dependencies": {
 | |
|     "@semantic-release/commit-analyzer": "^8.0.0",
 | |
|     "@semantic-release/error": "^2.2.0",
 | |
|     "@semantic-release/github": "^7.0.0",
 | |
|     "@semantic-release/npm": "^7.0.0",
 | |
|     "@semantic-release/release-notes-generator": "^9.0.0",
 | |
|     "aggregate-error": "^3.0.0",
 | |
|     "cosmiconfig": "^7.0.0",
 | |
|     "debug": "^4.0.0",
 | |
|     "env-ci": "^5.0.0",
 | |
|     "execa": "^5.0.0",
 | |
|     "figures": "^3.0.0",
 | |
|     "find-versions": "^4.0.0",
 | |
|     "get-stream": "^6.0.0",
 | |
|     "git-log-parser": "^1.2.0",
 | |
|     "hook-std": "^2.0.0",
 | |
|     "hosted-git-info": "^4.0.0",
 | |
|     "lodash": "^4.17.15",
 | |
|     "marked": "^2.0.0",
 | |
|     "marked-terminal": "^4.1.1",
 | |
|     "micromatch": "^4.0.2",
 | |
|     "p-each-series": "^2.1.0",
 | |
|     "p-reduce": "^2.0.0",
 | |
|     "read-pkg-up": "^7.0.0",
 | |
|     "resolve-from": "^5.0.0",
 | |
|     "semver": "^7.3.2",
 | |
|     "semver-diff": "^3.1.1",
 | |
|     "signale": "^1.2.1",
 | |
|     "yargs": "^16.2.0"
 | |
|   },
 | |
|   "devDependencies": {
 | |
|     "ava": "3.15.0",
 | |
|     "clear-module": "4.1.1",
 | |
|     "codecov": "3.8.1",
 | |
|     "delay": "5.0.0",
 | |
|     "dockerode": "3.2.1",
 | |
|     "file-url": "3.0.0",
 | |
|     "fs-extra": "9.1.0",
 | |
|     "got": "11.8.1",
 | |
|     "js-yaml": "3.14.1",
 | |
|     "mockserver-client": "5.11.2",
 | |
|     "nock": "13.0.11",
 | |
|     "nyc": "15.1.0",
 | |
|     "p-retry": "4.4.0",
 | |
|     "proxyquire": "2.1.3",
 | |
|     "sinon": "9.2.4",
 | |
|     "stream-buffers": "3.0.2",
 | |
|     "tempy": "1.0.0",
 | |
|     "xo": "0.29.1"
 | |
|   },
 | |
|   "engines": {
 | |
|     "node": ">=10.18"
 | |
|   },
 | |
|   "files": [
 | |
|     "bin",
 | |
|     "docs",
 | |
|     "lib",
 | |
|     "index.js",
 | |
|     "cli.js"
 | |
|   ],
 | |
|   "homepage": "https://github.com/semantic-release/semantic-release#readme",
 | |
|   "keywords": [
 | |
|     "author",
 | |
|     "automation",
 | |
|     "changelog",
 | |
|     "module",
 | |
|     "package",
 | |
|     "publish",
 | |
|     "release",
 | |
|     "semver",
 | |
|     "version"
 | |
|   ],
 | |
|   "license": "MIT",
 | |
|   "main": "index.js",
 | |
|   "nyc": {
 | |
|     "include": [
 | |
|       "lib/**/*.js",
 | |
|       "index.js",
 | |
|       "cli.js"
 | |
|     ],
 | |
|     "reporter": [
 | |
|       "json",
 | |
|       "text",
 | |
|       "html"
 | |
|     ],
 | |
|     "all": true
 | |
|   },
 | |
|   "prettier": {
 | |
|     "printWidth": 120,
 | |
|     "trailingComma": "es5"
 | |
|   },
 | |
|   "publishConfig": {
 | |
|     "access": "public"
 | |
|   },
 | |
|   "repository": {
 | |
|     "type": "git",
 | |
|     "url": "git+https://github.com/semantic-release/semantic-release.git"
 | |
|   },
 | |
|   "scripts": {
 | |
|     "codecov": "codecov -f coverage/coverage-final.json",
 | |
|     "lint": "xo",
 | |
|     "pretest": "npm run lint",
 | |
|     "semantic-release": "./bin/semantic-release.js",
 | |
|     "test": "nyc ava -v",
 | |
|     "test:ci": "nyc ava -v"
 | |
|   },
 | |
|   "xo": {
 | |
|     "prettier": true,
 | |
|     "space": true,
 | |
|     "rules": {
 | |
|       "unicorn/string-content": "off"
 | |
|     }
 | |
|   },
 | |
|   "renovate": {
 | |
|     "extends": [
 | |
|       "github>semantic-release/.github"
 | |
|     ]
 | |
|   }
 | |
| }
 |