diff --git a/.gitignore b/.gitignore index a3bbf60..3b7f212 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ node_modules -package-lock.json +yarn.lock lib .idea \ No newline at end of file diff --git a/package.json b/package.json index 00e6f1d..5204fef 100644 --- a/package.json +++ b/package.json @@ -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" } -} +} \ No newline at end of file