Skip to content

Commit

Permalink
CI: Fixed a missing dependency in our package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Hans Moog committed May 5, 2018
1 parent e39be0f commit 65e4373
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 7 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,17 @@ Modular include:

```javascript
var AES = require("crypto-ts").AES;
var SHA256 = require("crypto-ts/SHA256");
var SHA256 = require("crypto-ts").SHA256;
...
console.log(SHA256("Message"));
```

Including all libraries, for access to extra methods:

```javascript
var CryptoJS = require("crypto-js");
console.log(CryptoJS.HmacSHA1("Message", "Key"));
var cryptoTS = require("crypto-ts");
...
console.log(cryptoTS.HmacSHA1("Message", "Key"));
```

## Client (browser)
Expand Down
17 changes: 17 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
]
},
"generateNotes": {
"preset": "eslint"
"preset": "eslint"
},
"publish": [
{
Expand Down Expand Up @@ -119,6 +119,7 @@
"@types/node": "10.0.0",
"chalk": "2.4.1",
"codelyzer": "4.3.0",
"conventional-changelog-eslint": "^1.0.9",
"core-js": "2.5.5",
"istanbul-instrumenter-loader": "3.0.1",
"jasmine-core": "3.1.0",
Expand All @@ -136,16 +137,16 @@
"rollup-plugin-sourcemaps": "0.4.2",
"rxjs": "6.0.0",
"rxjs-compat": "^6.0.0",
"semantic-release": "^15.2.0",
"shelljs": "0.8.1",
"source-map-loader": "0.2.3",
"travis-deploy-once": "^5.0.0",
"ts-loader": "4.2.0",
"tslint": "5.9.1",
"tslint-angular": "1.1.1",
"typescript": "2.8.3",
"uglify-js": "3.3.23",
"webpack": "4.6.0",
"zone.js": "0.8.26",
"semantic-release": "^15.2.0",
"travis-deploy-once": "^5.0.0"
"zone.js": "0.8.26"
}
}

0 comments on commit 65e4373

Please sign in to comment.