Skip to content

Commit

Permalink
chore(semantic): semantic release stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
olalonde committed Oct 8, 2015
1 parent dabd91c commit fc65e97
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 49 deletions.
3 changes: 3 additions & 0 deletions .cz.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"path": "node_modules/cz-conventional-changelog/"
}
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
//registry.npmjs.org/:_authToken=${NPM_TOKEN}
103 changes: 54 additions & 49 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,50 +1,55 @@
{
"name": "bitstore",
"version": "1.0.0",
"description": "A content-addressable cloud storage web service that uses Bitcoin public key infrastructure for authentication and payment.",
"main": "./lib/index.js",
"scripts": {
"lint": "eslint ./src ./test",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "mocha test/ --opts mocha.opts",
"pretest": "npm run lint",
"prepublish": "babel ./src --out-dir ./lib --copy-files"
},
"bin": {
"bitstore": "./lib/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/blockai/bitstore-client.git"
},
"keywords": [
"bitstore",
"bitcoin",
"content-addressable"
],
"author": "William Cotton <[email protected]>",
"contributors": [
"Olivier Lalonde <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/blockai/bitstore-client/issues"
},
"homepage": "https://github.com/blockai/bitstore-client",
"dependencies": {
"bitcoinjs-lib": "^1.5.7",
"debug": "^2.2.0",
"nconf": "^0.7.1",
"superagent": "^1.2.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
"browserify": "^10.2.0",
"chai": "^3.3.0",
"eslint": "^1.6.0",
"eslint-config-airbnb": "^0.1.0",
"mocha": "^2.2.4",
"semantic-release": "^4.3.5"
}
}
"name": "bitstore",
"description": "A content-addressable cloud storage web service that uses Bitcoin public key infrastructure for authentication and payment.",
"main": "./lib/index.js",
"scripts": {
"lint": "eslint ./src ./test",
"test": "mocha test/ --opts mocha.opts",
"pretest": "npm run lint",
"prepublish": "babel ./src --out-dir ./lib --copy-files",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"release": {
"debug": false,
"verifyConditions": "semantic-release/dist/lib/plugin-noop"
},
"bin": {
"bitstore": "./lib/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/blockai/bitstore-client.git"
},
"keywords": [
"bitstore",
"bitcoin",
"content-addressable"
],
"author": "William Cotton <[email protected]>",
"contributors": [
"Olivier Lalonde <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/blockai/bitstore-client/issues"
},
"homepage": "https://github.com/blockai/bitstore-client",
"dependencies": {
"bitcoinjs-lib": "^1.5.7",
"debug": "^2.2.0",
"nconf": "^0.7.1",
"superagent": "^1.2.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
"browserify": "^10.2.0",
"chai": "^3.3.0",
"cz-conventional-changelog": "^1.1.2",
"eslint": "^1.6.0",
"eslint-config-airbnb": "^0.1.0",
"mocha": "^2.2.4",
"semantic-release": "^4.3.5"
},
"version": "1.1.0"
}

0 comments on commit fc65e97

Please sign in to comment.