UNPKG

6.93 kBJSONView Raw
1{
2 "title": "IgnoreFS",
3 "name": "ignorefs",
4 "version": "3.17.0",
5 "description": "Ignore common and custom patterns of the file system",
6 "homepage": "https://github.com/bevry/ignorefs",
7 "license": "MIT",
8 "keywords": [
9 "binary",
10 "encoding",
11 "es2019",
12 "node",
13 "text",
14 "typed",
15 "types",
16 "typescript"
17 ],
18 "badges": {
19 "list": [
20 "githubworkflow",
21 "npmversion",
22 "npmdownloads",
23 "daviddm",
24 "daviddmdev",
25 "---",
26 "githubsponsors",
27 "patreon",
28 "flattr",
29 "liberapay",
30 "buymeacoffee",
31 "opencollective",
32 "crypto",
33 "paypal",
34 "wishlist"
35 ],
36 "config": {
37 "githubWorkflow": "bevry",
38 "githubSponsorsUsername": "balupton",
39 "buymeacoffeeUsername": "balupton",
40 "cryptoURL": "https://bevry.me/crypto",
41 "flattrUsername": "balupton",
42 "liberapayUsername": "bevry",
43 "opencollectiveUsername": "bevry",
44 "patreonUsername": "bevry",
45 "paypalURL": "https://bevry.me/paypal",
46 "wishlistURL": "https://bevry.me/wishlist",
47 "githubUsername": "bevry",
48 "githubRepository": "ignorefs",
49 "githubSlug": "bevry/ignorefs",
50 "npmPackageName": "ignorefs"
51 }
52 },
53 "funding": "https://bevry.me/fund",
54 "author": "2012+ Bevry Pty Ltd <us@bevry.me> (http://bevry.me), 2011 Benjamin Lupton <b@lupton.cc> (https://balupton.com)",
55 "maintainers": [
56 "Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)"
57 ],
58 "contributors": [
59 "Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)"
60 ],
61 "bugs": {
62 "url": "https://github.com/bevry/ignorefs/issues"
63 },
64 "repository": {
65 "type": "git",
66 "url": "https://github.com/bevry/ignorefs.git"
67 },
68 "engines": {
69 "node": ">=10"
70 },
71 "editions": [
72 {
73 "description": "TypeScript source code with Import for modules",
74 "directory": "source",
75 "entry": "index.ts",
76 "tags": [
77 "source",
78 "typescript",
79 "import"
80 ],
81 "engines": false
82 },
83 {
84 "description": "TypeScript compiled against ES2019 for Node.js 10 || 12 || 14 || 16 with Require for modules",
85 "directory": "edition-es2019",
86 "entry": "index.js",
87 "tags": [
88 "compiled",
89 "javascript",
90 "es2019",
91 "require"
92 ],
93 "engines": {
94 "node": "10 || 12 || 14 || 16",
95 "browsers": false
96 }
97 },
98 {
99 "description": "TypeScript compiled against ES2019 for Node.js 12 || 14 || 16 with Import for modules",
100 "directory": "edition-es2019-esm",
101 "entry": "index.js",
102 "tags": [
103 "compiled",
104 "javascript",
105 "es2019",
106 "import"
107 ],
108 "engines": {
109 "node": "12 || 14 || 16",
110 "browsers": false
111 }
112 }
113 ],
114 "types": "./compiled-types/",
115 "type": "module",
116 "main": "edition-es2019/index.js",
117 "exports": {
118 "node": {
119 "import": "./edition-es2019-esm/index.js",
120 "require": "./edition-es2019/index.js"
121 }
122 },
123 "dependencies": {
124 "ignorepatterns": "^4.16.0"
125 },
126 "devDependencies": {
127 "@bevry/update-contributors": "^1.19.0",
128 "@typescript-eslint/eslint-plugin": "^4.28.5",
129 "@typescript-eslint/parser": "^4.28.5",
130 "assert-helpers": "^8.4.0",
131 "eslint": "^7.31.0",
132 "eslint-config-bevry": "^3.27.0",
133 "eslint-config-prettier": "^8.3.0",
134 "eslint-plugin-prettier": "^3.4.0",
135 "kava": "^5.14.0",
136 "make-deno-edition": "^1.3.0",
137 "prettier": "^2.3.2",
138 "projectz": "^2.21.0",
139 "surge": "^0.23.0",
140 "typedoc": "^0.21.4",
141 "typescript": "4.3.5",
142 "valid-directory": "^3.7.0"
143 },
144 "scripts": {
145 "our:clean": "rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next",
146 "our:compile": "npm run our:compile:deno && npm run our:compile:edition-es2019 && npm run our:compile:edition-es2019-esm && npm run our:compile:types",
147 "our:compile:deno": "make-deno-edition --attempt",
148 "our:compile:edition-es2019": "tsc --module commonjs --target ES2019 --outDir ./edition-es2019 --project tsconfig.json && ( test ! -d edition-es2019/source || ( mv edition-es2019/source edition-temp && rm -Rf edition-es2019 && mv edition-temp edition-es2019 ) ) && echo '{\"type\": \"commonjs\"}' > edition-es2019/package.json",
149 "our:compile:edition-es2019-esm": "tsc --module ESNext --target ES2019 --outDir ./edition-es2019-esm --project tsconfig.json && ( test ! -d edition-es2019-esm/source || ( mv edition-es2019-esm/source edition-temp && rm -Rf edition-es2019-esm && mv edition-temp edition-es2019-esm ) ) && echo '{\"type\": \"module\"}' > edition-es2019-esm/package.json",
150 "our:compile:types": "tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )",
151 "our:deploy": "echo no need for this project",
152 "our:meta": "npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz",
153 "our:meta:contributors": "update-contributors",
154 "our:meta:docs": "npm run our:meta:docs:typedoc",
155 "our:meta:docs:typedoc": "rm -Rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source",
156 "our:meta:projectz": "projectz compile",
157 "our:release": "npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push",
158 "our:release:check-changelog": "cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)",
159 "our:release:check-dirty": "git diff --exit-code",
160 "our:release:prepare": "npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta",
161 "our:release:push": "git push origin && git push origin --tags",
162 "our:release:tag": "export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"",
163 "our:setup": "npm run our:setup:install",
164 "our:setup:install": "npm install",
165 "our:test": "npm run our:verify && npm test",
166 "our:verify": "npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier",
167 "our:verify:directory": "valid-directory",
168 "our:verify:eslint": "eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source",
169 "our:verify:prettier": "prettier --write .",
170 "test": "node ./edition-es2019/test.js"
171 },
172 "eslintConfig": {
173 "extends": [
174 "bevry"
175 ]
176 },
177 "prettier": {
178 "semi": false,
179 "singleQuote": true
180 }
181}
\No newline at end of file