-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(semantic): semantic release stuff
- Loading branch information
Showing
3 changed files
with
58 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"path": "node_modules/cz-conventional-changelog/" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
//registry.npmjs.org/:_authToken=${NPM_TOKEN} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |