Skip to content

Commit dd2cd0f

Browse files
Lower target to ES6 and meta enhancement on package.json (#107)
* upgrade dependencies * add more package.json meta * lower tsconfig target to ES6
1 parent 84747b7 commit dd2cd0f

File tree

3 files changed

+32
-19
lines changed

3 files changed

+32
-19
lines changed

package-lock.json

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
11
{
22
"name": "@fluffy-spoon/substitute",
33
"version": "1.0.0",
4-
"description": "",
4+
"description": "TypeScript port of NSubstitute, which aims to provide a much more fluent mocking opportunity for strong-typed languages",
5+
"license": "MIT",
6+
"funding": {
7+
"type": "opencollective",
8+
"url": "https://opencollective.com/substitute-js#section-contribute"
9+
},
10+
"author": {
11+
"name": "Mathias Lykkegaard Lorenzen",
12+
"url": "https://github.com/ffMathy"
13+
},
14+
"contributors": [
15+
{
16+
"name": "Enrique Pöhlmann",
17+
"url": "https://github.com/notanengineercom"
18+
}
19+
],
520
"main": "dist/src/index.js",
621
"typings": "./dist/src/index.d.ts",
722
"files": [
@@ -12,8 +27,7 @@
1227
"test": "tsc && ava",
1328
"build": "tsc"
1429
},
15-
"author": "",
16-
"license": "ISC",
30+
"dependencies": {},
1731
"devDependencies": {
1832
"@ava/typescript": "^1.1.0",
1933
"ava": "^3.7.0",
@@ -31,6 +45,5 @@
3145
"cache": false,
3246
"failFast": true,
3347
"failWithoutAssertions": true
34-
},
35-
"dependencies": {}
36-
}
48+
}
49+
}

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
"outDir": "./dist",
1111
"strict": true,
1212
"strictNullChecks": false,
13-
"target": "ES2016"
13+
"target": "ES6"
1414
}
1515
}

0 commit comments

Comments
 (0)