moved to yarn & updated deps

This commit is contained in:
cupcakearmy 2019-12-10 12:18:59 +01:00
parent 7b73034b1b
commit 3e19c8242d
2 changed files with 11 additions and 8 deletions

2
.gitignore vendored
View File

@ -1,5 +1,5 @@
node_modules
package-lock.json
yarn.lock
lib
.idea

View File

@ -1,21 +1,24 @@
{
"name": "uhrwerk",
"version": "1.0.1",
"version": "1.0.2",
"description": "time utility",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "npm run build && mocha",
"prepublish": "npm run test"
"test": "yarn run build && mocha",
"prepublishOnly": "npm run test"
},
"keywords": [
"time"
"time",
"interval",
"humand-readable",
"utility"
],
"author": "Niccolo Borgioli",
"license": "MIT",
"devDependencies": {
"mocha": "^6",
"typescript": "^3.3"
"mocha": "6.x",
"typescript": "3.x"
}
}
}