94 lines
2.6 KiB
JSON
94 lines
2.6 KiB
JSON
{
|
|
"name": "semantic-release",
|
|
"description": "automated semver compliant package publishing",
|
|
"author": "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
|
|
"bin": {
|
|
"semantic-release": "./bin/semantic-release.js"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/semantic-release/semantic-release/issues"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.10",
|
|
"npm": ">=2"
|
|
},
|
|
"config": {
|
|
"nyc": {
|
|
"exclude": [
|
|
".test",
|
|
"node_modules"
|
|
]
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@semantic-release/commit-analyzer": "^2.0.0",
|
|
"@semantic-release/condition-travis": "^4.1.0",
|
|
"@semantic-release/error": "^1.0.0",
|
|
"@semantic-release/last-release-npm": "^1.2.1",
|
|
"@semantic-release/release-notes-generator": "^2.0.0",
|
|
"git-head": "^1.2.1",
|
|
"github": "^0.2.4",
|
|
"lodash": "^3.9.3",
|
|
"nerf-dart": "^1.0.0",
|
|
"nopt": "^3.0.3",
|
|
"npmconf": "^2.1.2",
|
|
"npmlog": "^1.2.1",
|
|
"parse-github-repo-url": "^1.0.0",
|
|
"require-relative": "^0.8.7",
|
|
"run-auto": "^1.1.2",
|
|
"run-series": "^1.1.2",
|
|
"semver": "^5.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"babel": "^5.5.8",
|
|
"coveralls": "^2.11.2",
|
|
"mkdirp": "^0.5.1",
|
|
"nixt": "^0.4.1",
|
|
"nock": "^2.5.0",
|
|
"npm-registry-couchapp": "^2.6.11",
|
|
"nyc": "^3.0.0",
|
|
"proxyquire": "^1.5.0",
|
|
"rimraf": "^2.4.0",
|
|
"standard": "^5.0.2",
|
|
"tap": "^1.3.1"
|
|
},
|
|
"homepage": "https://github.com/semantic-release/semantic-release/tree/next#readme",
|
|
"keywords": [
|
|
"author",
|
|
"automation",
|
|
"changelog",
|
|
"module",
|
|
"package",
|
|
"publish",
|
|
"release",
|
|
"semver",
|
|
"version"
|
|
],
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"publishConfig": {
|
|
"tag": "next"
|
|
},
|
|
"release": {
|
|
"branch": "next"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/semantic-release/semantic-release.git"
|
|
},
|
|
"scripts": {
|
|
"build": "rimraf dist && mkdirp dist && babel src --out-dir dist",
|
|
"coverage": "nyc report",
|
|
"coverage:upload": "npm run coverage -- --reporter=lcovonly && coveralls < coverage/lcov.info",
|
|
"prepublish": "npm run build",
|
|
"pretest:integration": "npm run build && npm run test:build",
|
|
"pretest:unit": "npm run build && npm run test:build",
|
|
"semantic-release": "./bin/semantic-release.js pre && npm dedupe && npm publish && ./bin/semantic-release.js post",
|
|
"test": "npm run test:style && npm run test:unit",
|
|
"test:build": "rimraf .test && mkdirp .test && babel test --out-dir .test",
|
|
"test:integration": "tap --no-cov .test/scenarios/*.js",
|
|
"test:style": "standard",
|
|
"test:unit": "nyc tap --no-cov .test/specs/*.js"
|
|
}
|
|
}
|