Skip to content

Commit

Permalink
fix: dep update
Browse files Browse the repository at this point in the history
  • Loading branch information
John Conley committed Dec 21, 2018
1 parent e9ccd79 commit 9e8f054
Show file tree
Hide file tree
Showing 2 changed files with 3,464 additions and 324 deletions.
116 changes: 61 additions & 55 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,57 +1,63 @@
{
"name": "valory-adaptor-slimjim",
"version": "1.0.0",
"main": "dist/adaptor-slimjim.js",
"license": "MIT",
"typings": "dist/adaptor-slimjim.d.ts",
"devDependencies": {
"@types/node": "^10.10.1",
"tslint": "^5.11.0",
"typescript": "^3.0.3",
"valory-runtime": "^3.7.0",
"cz-conventional-changelog": "^2.1.0",
"husky": "^0.14.3",
"semantic-release": "^12.4.1"
},
"dependencies": {
"slimjim": "^0.3.1"
},
"peerDependencies": {
"valory-runtime": "^3.7.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"pretest": "npm run build",
"build": "tsc",
"prepare": "npm run build",
"release": "semantic-release",
"commitmsg": "commitlint -e $GIT_PARAMS"
},
"release": {
"repositoryUrl": "https://github.com/jfrconley/valory-adaptor-slimjim.git",
"branch": "master",
"verifyConditions": [
"@semantic-release/npm",
"@semantic-release/github"
],
"publish": [
"@semantic-release/npm",
"@semantic-release/github"
],
"success": [],
"fail": []
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": "https://github.com/jfrconley/valory-adaptor-slimjim.git",
"keywords": [
"valory",
"slimjim"
]
"name": "valory-adaptor-slimjim",
"version": "1.0.0",
"main": "dist/adaptor-slimjim.js",
"license": "MIT",
"typings": "dist/adaptor-slimjim.d.ts",
"devDependencies": {
"@types/node": "^10.12.18",
"tslint": "^5.12.0",
"typescript": "^3.2.2",
"valory-runtime": "^3.12.2",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.3.0",
"semantic-release": "^15.13.1",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2"
},
"dependencies": {
"slimjim": "^0.3.2"
},
"peerDependencies": {
"valory-runtime": "^3.12.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"pretest": "npm run build",
"build": "tsc",
"prepare": "npm run build",
"release": "semantic-release"
},
"release": {
"repositoryUrl": "https://github.com/jfrconley/valory-adaptor-slimjim.git",
"branch": "master",
"verifyConditions": [
"@semantic-release/npm",
"@semantic-release/github"
],
"publish": [
"@semantic-release/npm",
"@semantic-release/github"
],
"success": [],
"fail": []
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": "https://github.com/jfrconley/valory-adaptor-slimjim.git",
"keywords": [
"valory",
"slimjim"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
}
}
Loading

0 comments on commit 9e8f054

Please sign in to comment.