|
| 1 | +{ |
| 2 | + "name": "dayjs-with-plugins", |
| 3 | + "description": "Day.js with all plugins added out of the box, no need to use dayjs.extend!", |
| 4 | + "version": "0.0.0", |
| 5 | + "author": "Nick Baugh <[email protected]> (http://niftylettuce.com/)", |
| 6 | + "ava": { |
| 7 | + "verbose": true |
| 8 | + }, |
| 9 | + "bugs": { |
| 10 | + "url": "https://github.com/niftylettuce/dayjs-with-plugins/issues", |
| 11 | + |
| 12 | + }, |
| 13 | + "commitlint": { |
| 14 | + "extends": [ |
| 15 | + "@commitlint/config-conventional" |
| 16 | + ] |
| 17 | + }, |
| 18 | + "contributors": [ |
| 19 | + "Nick Baugh <[email protected]> (http://niftylettuce.com/)" |
| 20 | + ], |
| 21 | + "dependencies": { |
| 22 | + "debug": "^4.1.1" |
| 23 | + }, |
| 24 | + "devDependencies": { |
| 25 | + "@commitlint/cli": "latest", |
| 26 | + "@commitlint/config-conventional": "latest", |
| 27 | + "ava": "latest", |
| 28 | + "codecov": "latest", |
| 29 | + "cross-env": "latest", |
| 30 | + "dayjs": "^1.8.16", |
| 31 | + "eslint": "latest", |
| 32 | + "eslint-config-xo-lass": "latest", |
| 33 | + "fixpack": "latest", |
| 34 | + "husky": "latest", |
| 35 | + "lint-staged": "latest", |
| 36 | + "nyc": "latest", |
| 37 | + "remark-cli": "latest", |
| 38 | + "remark-preset-github": "latest", |
| 39 | + "xo": "latest" |
| 40 | + }, |
| 41 | + "engines": { |
| 42 | + "node": ">=8.3" |
| 43 | + }, |
| 44 | + "homepage": "https://github.com/niftylettuce/dayjs-with-plugins", |
| 45 | + "husky": { |
| 46 | + "hooks": { |
| 47 | + "pre-commit": "npm test", |
| 48 | + "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" |
| 49 | + } |
| 50 | + }, |
| 51 | + "keywords": [ |
| 52 | + "all", |
| 53 | + "alternative", |
| 54 | + "date", |
| 55 | + "day", |
| 56 | + "dayjs", |
| 57 | + "drop", |
| 58 | + "fast", |
| 59 | + "format", |
| 60 | + "formatting", |
| 61 | + "in", |
| 62 | + "moment", |
| 63 | + "momentjs", |
| 64 | + "performance", |
| 65 | + "plugins", |
| 66 | + "replacement" |
| 67 | + ], |
| 68 | + "license": "MIT", |
| 69 | + "lint-staged": { |
| 70 | + "*.js": [ |
| 71 | + "xo --fix", |
| 72 | + "git add" |
| 73 | + ], |
| 74 | + "*.md": [ |
| 75 | + "remark . -qfo", |
| 76 | + "git add" |
| 77 | + ], |
| 78 | + "package.json": [ |
| 79 | + "fixpack", |
| 80 | + "git add" |
| 81 | + ] |
| 82 | + }, |
| 83 | + "main": "index.js", |
| 84 | + "prettier": { |
| 85 | + "singleQuote": true, |
| 86 | + "bracketSpacing": true, |
| 87 | + "trailingComma": "none" |
| 88 | + }, |
| 89 | + "remarkConfig": { |
| 90 | + "plugins": [ |
| 91 | + "preset-github" |
| 92 | + ] |
| 93 | + }, |
| 94 | + "repository": { |
| 95 | + "type": "git", |
| 96 | + "url": "https://github.com/niftylettuce/dayjs-with-plugins" |
| 97 | + }, |
| 98 | + "scripts": { |
| 99 | + "ava": "cross-env NODE_ENV=test ava", |
| 100 | + "coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov", |
| 101 | + "lint": "xo && remark . -qfo", |
| 102 | + "nyc": "cross-env NODE_ENV=test nyc ava", |
| 103 | + "test": "npm run lint && npm run ava", |
| 104 | + "test-coverage": "npm run lint && npm run nyc" |
| 105 | + }, |
| 106 | + "xo": { |
| 107 | + "prettier": true, |
| 108 | + "space": true, |
| 109 | + "extends": [ |
| 110 | + "xo-lass" |
| 111 | + ] |
| 112 | + }, |
| 113 | + "peerDependencies": { |
| 114 | + "dayjs": "*" |
| 115 | + } |
| 116 | +} |
0 commit comments