Skip to content

Commit

Permalink
Lower target to ES6 and meta enhancement on package.json (#107)
Browse files Browse the repository at this point in the history
* upgrade dependencies

* add more package.json meta

* lower tsconfig target to ES6
  • Loading branch information
notanengineercom authored May 6, 2020
1 parent 84747b7 commit dd2cd0f
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 19 deletions.
24 changes: 12 additions & 12 deletions package-lock.json

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

25 changes: 19 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,22 @@
{
"name": "@fluffy-spoon/substitute",
"version": "1.0.0",
"description": "",
"description": "TypeScript port of NSubstitute, which aims to provide a much more fluent mocking opportunity for strong-typed languages",
"license": "MIT",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/substitute-js#section-contribute"
},
"author": {
"name": "Mathias Lykkegaard Lorenzen",
"url": "https://github.com/ffMathy"
},
"contributors": [
{
"name": "Enrique Pöhlmann",
"url": "https://github.com/notanengineercom"
}
],
"main": "dist/src/index.js",
"typings": "./dist/src/index.d.ts",
"files": [
Expand All @@ -12,8 +27,7 @@
"test": "tsc && ava",
"build": "tsc"
},
"author": "",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@ava/typescript": "^1.1.0",
"ava": "^3.7.0",
Expand All @@ -31,6 +45,5 @@
"cache": false,
"failFast": true,
"failWithoutAssertions": true
},
"dependencies": {}
}
}
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"outDir": "./dist",
"strict": true,
"strictNullChecks": false,
"target": "ES2016"
"target": "ES6"
}
}

0 comments on commit dd2cd0f

Please sign in to comment.