Skip to content

Commit

Permalink
v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Stéphane Veyret committed May 7, 2018
1 parent 5d250f5 commit a03d029
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "intl-ts",
"version": "1.0.0",
"version": "1.1.0",
"description": "Internationalization library for TypeScript",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand All @@ -11,17 +11,25 @@
"scripts": {
"prepublishOnly": "npm run build && npm run test",
"build": "npm run clean && npm run tsc",
"test":
"nyc mocha --require ts-node/register --require source-map-support/register 'src/**/*.spec.ts'",
"test": "nyc mocha --require ts-node/register --require source-map-support/register 'src/**/*.spec.ts'",
"tsc": "tsc",
"lint": "tslint src/**/*.ts",
"clean": "rimraf dist"
},
"nyc": {
"extension": [".ts"],
"include": ["src/**"],
"exclude": ["**/*.spec.ts"],
"reporter": ["lcov", "text"],
"extension": [
".ts"
],
"include": [
"src/**"
],
"exclude": [
"**/*.spec.ts"
],
"reporter": [
"lcov",
"text"
],
"all": true
},
"keywords": [
Expand Down

0 comments on commit a03d029

Please sign in to comment.