source: frontend/node_modules/util.promisify/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 1.5 KB
Line 
1{
2 "name": "util.promisify",
3 "version": "1.0.1",
4 "description": "Polyfill/shim for util.promisify in node versions < v8",
5 "main": "index.js",
6 "dependencies": {
7 "define-properties": "^1.1.3",
8 "es-abstract": "^1.17.2",
9 "has-symbols": "^1.0.1",
10 "object.getownpropertydescriptors": "^2.1.0"
11 },
12 "devDependencies": {
13 "@es-shims/api": "^2.1.2",
14 "@ljharb/eslint-config": "^15.1.0",
15 "auto-changelog": "^1.16.2",
16 "eslint": "^6.8.0",
17 "safe-publish-latest": "^1.1.4"
18 },
19 "scripts": {
20 "prepublish": "safe-publish-latest",
21 "lint": "eslint .",
22 "pretest": "npm run lint",
23 "tests-only": "es-shim-api --bound",
24 "test": "npm run tests-only",
25 "posttest": "npx aud",
26 "version": "auto-changelog && git add CHANGELOG.md",
27 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
28 },
29 "repository": {
30 "type": "git",
31 "url": "git+https://github.com/ljharb/util.promisify.git"
32 },
33 "keywords": [
34 "promisify",
35 "promise",
36 "util",
37 "polyfill",
38 "shim",
39 "util.promisify"
40 ],
41 "author": "Jordan Harband <ljharb@gmail.com>",
42 "funding": {
43 "url": "https://github.com/sponsors/ljharb"
44 },
45 "license": "MIT",
46 "bugs": {
47 "url": "https://github.com/ljharb/util.promisify/issues"
48 },
49 "homepage": "https://github.com/ljharb/util.promisify#readme",
50 "auto-changelog": {
51 "output": "CHANGELOG.md",
52 "template": "keepachangelog",
53 "unreleased": false,
54 "commitLimit": false,
55 "backfillLimit": false
56 }
57}
Note: See TracBrowser for help on using the repository browser.