uhrwerk/package.json

24 lines
463 B
JSON
Raw Permalink Normal View History

2019-03-23 17:16:41 +00:00
{
"name": "uhrwerk",
2019-12-10 11:18:59 +00:00
"version": "1.0.2",
2019-03-23 17:16:41 +00:00
"description": "time utility",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
2019-12-10 11:18:59 +00:00
"test": "yarn run build && mocha",
"prepublishOnly": "npm run test"
2019-03-23 17:16:41 +00:00
},
"keywords": [
2019-12-10 11:18:59 +00:00
"time",
"interval",
"humand-readable",
"utility"
2019-03-23 17:16:41 +00:00
],
"author": "Niccolo Borgioli",
"license": "MIT",
"devDependencies": {
2019-12-10 11:18:59 +00:00
"mocha": "6.x",
"typescript": "3.x"
2019-03-23 17:16:41 +00:00
}
2019-12-10 11:18:59 +00:00
}