67 lines
1.8 KiB
JSON
67 lines
1.8 KiB
JSON
{
|
|
"name": "@semantic-release/core",
|
|
"description": "The scripts that do the actual release work.",
|
|
"author": "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
|
|
"bugs": {
|
|
"url": "https://github.com/semantic-release/core/issues"
|
|
},
|
|
"config": {
|
|
"nyc": {
|
|
"exclude": [
|
|
".test",
|
|
"node_modules",
|
|
"dist/lib/error.js"
|
|
]
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@semantic-release/commit-analyzer": "^1.0.0",
|
|
"@semantic-release/release-notes-generator": "^1.0.0",
|
|
"npm-registry-client": "^6.4.0",
|
|
"npmconf": "^2.1.2",
|
|
"npmlog": "^1.2.1",
|
|
"run-auto": "^1.1.2",
|
|
"semver": "^4.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"babel": "^5.5.8",
|
|
"coveralls": "^2.11.2",
|
|
"mkdirp": "^0.5.1",
|
|
"nock": "^2.5.0",
|
|
"nyc": "^2.3.0",
|
|
"npm-registry-couchapp": "^2.6.11",
|
|
"proxyquire": "^1.5.0",
|
|
"rimraf": "^2.4.0",
|
|
"standard": "^4.2.1",
|
|
"tap": "^1.2.0"
|
|
},
|
|
"homepage": "https://github.com/semantic-release/core#readme",
|
|
"keywords": [
|
|
"author",
|
|
"automation",
|
|
"changelog",
|
|
"module",
|
|
"package",
|
|
"publish",
|
|
"release",
|
|
"semver",
|
|
"version"
|
|
],
|
|
"license": "MIT",
|
|
"main": "src/index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/semantic-release/core.git"
|
|
},
|
|
"scripts": {
|
|
"build": "rimraf dist && mkdirp dist && babel src --out-dir dist",
|
|
"build:tests": "rimraf .test && mkdirp .test && babel test --out-dir .test",
|
|
"coverage": "nyc report",
|
|
"coverage:upload": "npm run coverage -- --reporter=lcovonly && coveralls < coverage/lcov.info",
|
|
"pretest:suite": "npm run build && npm run build:tests",
|
|
"test": "npm run test:style && npm run test:suite",
|
|
"test:style": "standard",
|
|
"test:suite": "nyc tap --no-cov .test/{scenarios,specs}/*.js"
|
|
}
|
|
}
|