Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
khawarizmus committed May 22, 2018
2 parents 6b5e5ae + efa2f11 commit add0429
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 8 deletions.
19 changes: 13 additions & 6 deletions package-lock.json

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

22 changes: 21 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"type": "git",
"url": "https://github.com/NEM-Apostille/Apostille-library"
},
"main": "dist/index.ts",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"commit": "git-cz",
"prebuild": "rimraf dist",
Expand All @@ -29,6 +30,20 @@
"semantic-release": "semantic-release"
},
"author": "gimyboya <[email protected]>",
"contributors": [
{
"name": "gimyboya",
"email": "[email protected]"
},
{
"name": "aiz",
"email": "[email protected]"
},
{
"name": "jeff",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"@types/crypto-js": "^3.1.39",
Expand Down Expand Up @@ -57,6 +72,11 @@
"typescript": "^2.8.3",
"validate-commit-msg": "^2.14.0"
},
"peerDependencies": {
"nem2-sdk": "^0.9.2",
"nem-sdk": "^1.6.4",
"rxjs": "^5.5.2"
},
"files": [
"dist"
],
Expand Down
10 changes: 9 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
/* Basic Options */
"target": "ES5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */
"target": "ES2016", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
"lib": [
"es2016",
Expand Down Expand Up @@ -65,7 +65,15 @@
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
"skipLibCheck": true,
},
"files": [
"index.ts"
],
"exclude": [
"node_modules",
"dist",
"**/tests/*"
],
"include": [
"src/**/*.ts"
]
}

0 comments on commit add0429

Please sign in to comment.