lowdefy/packages/format/package.json
2020-11-04 06:24:40 +00:00

50 lines
1.1 KiB
JSON

{
"name": "@lowdefy/format",
"version": "1.0.0",
"license": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",
"bugs": {
"url": "https://github.com/lowdefy/lowdefy/issues"
},
"contributors": [
{
"name": "Sam Tolmay",
"url": "https://github.com/SamTolmay"
},
{
"name": "Gerrie van Wyk",
"url": "https://github.com/Gervwyk"
}
],
"repository": {
"type": "git",
"url": "https://github.com/lowdefy/lowdefy.git"
},
"main": "dist/index.js",
"files": [
"dist/*"
],
"scripts": {
"build": "babel src --out-dir dist",
"clean": "rm -rf dist",
"test": "jest --coverage",
"prepare": "yarn build",
"prepublishOnly": "yarn build",
"version:prerelease": "yarn version prerelease",
"version:patch": "yarn version patch -d",
"version:minor": "yarn version minor -d",
"version:major": "yarn version major -d"
},
"dependencies": {
"moment": "2.29.1"
},
"devDependencies": {
"@babel/cli": "7.12.1",
"@babel/core": "7.12.3",
"@babel/preset-env": "7.12.1",
"babel-jest": "26.6.3",
"jest": "26.6.3"
}
}