1 | {
|
---|
2 | "name": "ignore",
|
---|
3 | "version": "5.3.1",
|
---|
4 | "description": "Ignore is a manager and filter for .gitignore rules, the one used by eslint, gitbook and many others.",
|
---|
5 | "files": [
|
---|
6 | "legacy.js",
|
---|
7 | "index.js",
|
---|
8 | "index.d.ts",
|
---|
9 | "LICENSE-MIT"
|
---|
10 | ],
|
---|
11 | "scripts": {
|
---|
12 | "prepublishOnly": "npm run build",
|
---|
13 | "build": "babel -o legacy.js index.js",
|
---|
14 | "test:lint": "eslint .",
|
---|
15 | "test:tsc": "tsc ./test/ts/simple.ts --lib ES6",
|
---|
16 | "test:ts": "node ./test/ts/simple.js",
|
---|
17 | "tap": "tap --reporter classic",
|
---|
18 | "test:git": "npm run tap test/git-check-ignore.js",
|
---|
19 | "test:ignore": "npm run tap test/ignore.js",
|
---|
20 | "test:others": "npm run tap test/others.js",
|
---|
21 | "test:cases": "npm run tap test/*.js -- --coverage",
|
---|
22 | "test:no-coverage": "npm run tap test/*.js -- --no-check-coverage",
|
---|
23 | "test:only": "npm run test:lint && npm run test:tsc && npm run test:ts && npm run test:cases",
|
---|
24 | "test": "npm run test:only",
|
---|
25 | "test:win32": "IGNORE_TEST_WIN32=1 npm run test",
|
---|
26 | "report": "tap --coverage-report=html",
|
---|
27 | "posttest": "npm run report && codecov"
|
---|
28 | },
|
---|
29 | "repository": {
|
---|
30 | "type": "git",
|
---|
31 | "url": "git@github.com:kaelzhang/node-ignore.git"
|
---|
32 | },
|
---|
33 | "keywords": [
|
---|
34 | "ignore",
|
---|
35 | ".gitignore",
|
---|
36 | "gitignore",
|
---|
37 | "npmignore",
|
---|
38 | "rules",
|
---|
39 | "manager",
|
---|
40 | "filter",
|
---|
41 | "regexp",
|
---|
42 | "regex",
|
---|
43 | "fnmatch",
|
---|
44 | "glob",
|
---|
45 | "asterisks",
|
---|
46 | "regular-expression"
|
---|
47 | ],
|
---|
48 | "author": "kael",
|
---|
49 | "license": "MIT",
|
---|
50 | "bugs": {
|
---|
51 | "url": "https://github.com/kaelzhang/node-ignore/issues"
|
---|
52 | },
|
---|
53 | "devDependencies": {
|
---|
54 | "@babel/cli": "^7.22.9",
|
---|
55 | "@babel/core": "^7.22.9",
|
---|
56 | "@babel/preset-env": "^7.22.9",
|
---|
57 | "codecov": "^3.8.2",
|
---|
58 | "debug": "^4.3.4",
|
---|
59 | "eslint": "^8.46.0",
|
---|
60 | "eslint-config-ostai": "^3.0.0",
|
---|
61 | "eslint-plugin-import": "^2.28.0",
|
---|
62 | "mkdirp": "^3.0.1",
|
---|
63 | "pre-suf": "^1.1.1",
|
---|
64 | "rimraf": "^5.0.1",
|
---|
65 | "spawn-sync": "^2.0.0",
|
---|
66 | "tap": "^16.3.9",
|
---|
67 | "tmp": "0.2.1",
|
---|
68 | "typescript": "^5.1.6"
|
---|
69 | },
|
---|
70 | "engines": {
|
---|
71 | "node": ">= 4"
|
---|
72 | }
|
---|
73 | }
|
---|