@exodus/walletconnect-time
Version:
64 lines (63 loc) • 1.71 kB
JSON
{
"name": "@exodus/walletconnect-time",
"description": "time utils",
"version": "1.0.2-exodus.1",
"author": "WalletConnect, Inc. <walletconnect.com>",
"license": "MIT",
"keywords": [
"time",
"timestamp",
"test",
"testing",
"label",
"unit testing"
],
"files": [
"dist/cjs"
],
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"homepage": "https://github.com/walletconnect/walletconnect-utils",
"repository": {
"type": "git",
"url": "git+https://github.com/walletconnect/walletconnect-utils.git"
},
"bugs": {
"url": "https://github.com/walletconnect/walletconnect-utils/issues"
},
"scripts": {
"start": "tsdx watch",
"clean": "rm -rf dist",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:umd": "webpack",
"build": "run-s clean build:cjs",
"test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --timeout 5000 --exit -r ts-node/register ./test/**/*.test.ts",
"lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'",
"npm-publish:latest": "npm publish --access public --tag latest",
"npm-publish:canary": "npm publish --access public --tag canary",
"prepublishOnly": "npm run test && npm run build"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.7",
"husky": "^4.3.0",
"typescript": "^4.9.5",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"husky": {
"hooks": {
"pre-commit": "run-s lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": false,
"trailingComma": "es5"
},
"dependencies": {
"tslib": "1.14.1"
}
}