-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
John Conley
committed
Dec 21, 2018
1 parent
e9ccd79
commit 9e8f054
Showing
2 changed files
with
3,464 additions
and
324 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 |
---|---|---|
@@ -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" | ||
} | ||
} | ||
} |
Oops, something went wrong.