source: frontend/node_modules/node-exports-info/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: 2.8 KB
Line 
1{
2 "name": "node-exports-info",
3 "version": "1.6.0",
4 "description": "Info about node `exports` field support: version ranges, categories, etc.",
5 "main": false,
6 "exports": {
7 "./getCategoriesForRange": "./getCategoriesForRange.js",
8 "./getCategory": "./getCategory.js",
9 "./getCategoryFlags": "./getCategoryFlags.js",
10 "./getCategoryInfo": "./getCategoryInfo.js",
11 "./getConditionsForCategory": "./getConditionsForCategory.js",
12 "./getRange": "./getRange.js",
13 "./getRangePairs": "./getRangePairs.js",
14 "./isCategory": "./isCategory.js",
15 "./package.json": "./package.json"
16 },
17 "sideEffects": false,
18 "scripts": {
19 "prepack": "npmignore --auto --commentLines=autogenerated",
20 "prepublishOnly": "safe-publish-latest",
21 "prepublish": "not-in-publish || npm run prepublishOnly",
22 "lint": "eslint .",
23 "postlint": "tsc && attw -P",
24 "pretest": "npm run lint",
25 "tests-only": "nyc tape 'test/**/*.js'",
26 "test": "npm run tests-only",
27 "posttest": "npx npm@'>=10.2' audit --production",
28 "version": "auto-changelog && git add CHANGELOG.md",
29 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
30 },
31 "repository": {
32 "type": "git",
33 "url": "git+https://github.com/inspect-js/node-exports-info.git"
34 },
35 "keywords": [
36 "node",
37 "exports",
38 "support",
39 "info",
40 "ranges",
41 "categories",
42 "conditions",
43 "patterns",
44 "pattern trailers",
45 "experimental",
46 "esm",
47 "cjs",
48 "require",
49 "import"
50 ],
51 "author": "Jordan Harband <ljharb@gmail.com>",
52 "funding": {
53 "url": "https://github.com/sponsors/ljharb"
54 },
55 "license": "MIT",
56 "bugs": {
57 "url": "https://github.com/inspect-js/node-exports-info/issues"
58 },
59 "homepage": "https://github.com/inspect-js/node-exports-info#readme",
60 "dependencies": {
61 "array.prototype.flatmap": "^1.3.3",
62 "es-errors": "^1.3.0",
63 "object.entries": "^1.1.9",
64 "semver": "^6.3.1"
65 },
66 "devDependencies": {
67 "@arethetypeswrong/cli": "^0.18.2",
68 "@ljharb/eslint-config": "^22.1.3",
69 "@ljharb/tsconfig": "^0.3.2",
70 "@types/array.prototype.flatmap": "^1.2.6",
71 "@types/for-each": "^0.3.3",
72 "@types/object-inspect": "^1.13.0",
73 "@types/object.entries": "^1.1.1",
74 "@types/semver": "^6.2.7",
75 "@types/tape": "^5.8.1",
76 "auto-changelog": "^2.5.0",
77 "es-value-fixtures": "^1.7.1",
78 "eslint": "^9.39.2",
79 "for-each": "^0.3.5",
80 "in-publish": "^2.0.1",
81 "jiti": "^0.0.0",
82 "npmignore": "^0.3.5",
83 "nyc": "^10.3.2",
84 "object-inspect": "^1.13.4",
85 "safe-publish-latest": "^2.0.0",
86 "tape": "^5.9.0",
87 "typescript": "next"
88 },
89 "engines": {
90 "node": ">= 0.4"
91 },
92 "auto-changelog": {
93 "output": "CHANGELOG.md",
94 "template": "keepachangelog",
95 "unreleased": false,
96 "commitLimit": false,
97 "backfillLimit": false,
98 "hideCredit": true
99 },
100 "publishConfig": {
101 "ignore": [
102 ".github/workflows"
103 ]
104 }
105}
Note: See TracBrowser for help on using the repository browser.