UNPKG

2.7 kBJSONView Raw
1{
2 "name": "prioritize",
3 "version": "0.1.0",
4 "description": "A light ES6 wrapper on fetch to facilitate prioritization of calls.",
5 "author": {
6 "name": "Darren Paul Wright",
7 "email": "Darren@DarrenPaulWright.com",
8 "url": "https://www.darrenpaulwright.com"
9 },
10 "type": "module",
11 "main": "index.js",
12 "files": [
13 "/src"
14 ],
15 "scripts": {
16 "test": "karma start --single-run",
17 "test-watch": "karma start",
18 "preversion": "npm test && npm run docs && git add --all && git diff --staged --quiet || git commit -m \"Updating docs\"",
19 "postversion": "npm publish",
20 "postpublish": "git push --follow-tags",
21 "pre-clean": "rm -rf node_modules && del /f package-lock.json",
22 "clean": "npm run pre-clean && npm install",
23 "update": "ncu -u && npm install",
24 "update-clean": "npm run pre-clean && npm run update",
25 "update-commit": "npm run update && npm test && git add --all && git diff --staged --quiet || git commit -m \"Updating dependencies\"",
26 "update-patch": "npm run update-commit && npm version patch",
27 "docs": "jsdoc2md ./src/prioritize.js > README.md -t node_modules/dmd-readable/docs.hbs --plugin dmd-readable"
28 },
29 "browserslist": [
30 "defaults"
31 ],
32 "badges": {
33 "npm": {
34 "image": "https://img.shields.io/npm/v/{{name}}.svg",
35 "url": "https://npmjs.com/package/{{name}}"
36 },
37 "build": {
38 "base": "https://travis-ci.org/DarrenPaulWright/",
39 "image": "{{name}}.svg?branch=master",
40 "url": "{{name}}"
41 },
42 "coverage": {
43 "base": "https://coveralls.io/",
44 "image": "repos/github/DarrenPaulWright/{{name}}/badge.svg?branch=master",
45 "url": "github/DarrenPaulWright/{{name}}?branch=master"
46 },
47 "deps": {
48 "image": "https://david-dm.org/darrenpaulwright/{{name}}.svg",
49 "url": "https://david-dm.org/darrenpaulwright/{{name}}"
50 },
51 "size": {
52 "base": "https://packagephobia.now.sh/",
53 "image": "badge?p={{name}}",
54 "url": "result?p={{name}}"
55 },
56 "vulnerabilities": {
57 "base": "https://snyk.io/test/github/DarrenPaulWright/{{name}}",
58 "image": "/badge.svg?targetFile=package.json",
59 "url": "?targetFile=package.json"
60 },
61 "license": {
62 "image": "https://img.shields.io/github/license/DarrenPaulWright/{{name}}.svg",
63 "url": "https://npmjs.com/package/{{name}}/LICENSE.md"
64 }
65 },
66 "repository": {
67 "type": "git",
68 "url": "https://github.com/DarrenPaulWright/prioritize.git"
69 },
70 "keywords": [
71 "bench",
72 "benchmark"
73 ],
74 "license": "MIT",
75 "dependencies": {
76 "async-agent": "^0.5.4",
77 "type-enforcer": "^1.1.5"
78 },
79 "devDependencies": {
80 "dmd-readable": "^1.2.2",
81 "jsdoc-to-markdown": "^6.0.1",
82 "karma-webpack-bundle": "0.4.3"
83 }
84}