UNPKG

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