UNPKG

2.61 kBJSONView Raw
1{
2 "name": "display-value",
3 "version": "2.0.1",
4 "description": "Converts values to a readable display string",
5 "type": "module",
6 "keywords": [
7 "display",
8 "readable",
9 "value"
10 ],
11 "license": "MIT",
12 "author": {
13 "name": "Darren Paul Wright",
14 "email": "Darren@DarrenPaulWright.com",
15 "url": "https://www.darrenpaulwright.com"
16 },
17 "homepage": "https://github.com/DarrenPaulWright/display-value#readme",
18 "repository": {
19 "type": "git",
20 "url": "git+https://github.com/DarrenPaulWright/display-value.git"
21 },
22 "bugs": {
23 "url": "https://github.com/DarrenPaulWright/display-value/issues"
24 },
25 "main": "index.js",
26 "files": [],
27 "badges": {
28 "npm": {
29 "image": "https://img.shields.io/npm/v/display-value.svg",
30 "url": "https://npmjs.com/package/display-value"
31 },
32 "build": {
33 "base": "https://travis-ci.org/DarrenPaulWright/",
34 "image": "display-value.svg?branch=master",
35 "url": "display-value"
36 },
37 "deps": {
38 "image": "https://david-dm.org/DarrenPaulWright/display-value.svg",
39 "url": "https://david-dm.org/DarrenPaulWright/display-value"
40 },
41 "size": {
42 "base": "https://packagephobia.now.sh/",
43 "image": "badge?p=display-value",
44 "url": "result?p=display-value"
45 },
46 "vulnerabilities": {
47 "base": "https://snyk.io/test/github/DarrenPaulWright/display-value",
48 "image": "/badge.svg?targetFile=package.json",
49 "url": "?targetFile=package.json"
50 },
51 "license": {
52 "image": "https://img.shields.io/github/license/DarrenPaulWright/display-value.svg",
53 "url": "https://npmjs.com/package/display-value/LICENSE.md"
54 }
55 },
56 "scripts": {
57 "test": "mocha",
58 "test-watch": "mocha --watch",
59 "preversion": "npm test && npm run docs && git add --all && git diff HEAD --quiet || git commit -m \"Updating docs\"",
60 "postversion": "npm publish",
61 "postpublish": "git push --follow-tags",
62 "pre-clean": "rm -rf node_modules && del /f package-lock.json",
63 "clean": "npm run pre-clean && npm install",
64 "update": "ncu -u && git diff --quiet || npm install",
65 "update-clean": "npm run pre-clean && npm run update",
66 "update-commit": "npm run update && npm test && git add --all && git diff HEAD --quiet || git commit -m \"Updating dependencies\"",
67 "update-patch": "npm run update && npm test && git add --all && git diff HEAD --quiet || git commit -m \"Updating dependencies\" && npm version patch",
68 "docs": "jsdoc2md index.js > README.md -t node_modules/dmd-readable/docs.hbs --plugin dmd-readable"
69 },
70 "devDependencies": {
71 "dmd-readable": "^1.2.4",
72 "esm": "^3.2.25",
73 "jsdoc-to-markdown": "^7.0.1",
74 "jsdom": "^16.6.0",
75 "mocha": "^8.4.0"
76 }
77}