1 | {
|
---|
2 | "name": "ignore",
|
---|
3 | "version": "5.1.8",
|
---|
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 | "test:git": "tap test/git-check-ignore.js",
|
---|
18 | "test:ignore": "tap test/ignore.js",
|
---|
19 | "test:others": "tap test/others.js",
|
---|
20 | "test:cases": "tap test/*.js --coverage",
|
---|
21 | "test:only": "npm run test:lint && npm run test:tsc && npm run test:ts && npm run test:cases",
|
---|
22 | "test": "npm run test:only",
|
---|
23 | "test:win32": "IGNORE_TEST_WIN32=1 npm run test",
|
---|
24 | "posttest": "tap --coverage-report=html && codecov"
|
---|
25 | },
|
---|
26 | "repository": {
|
---|
27 | "type": "git",
|
---|
28 | "url": "git@github.com:kaelzhang/node-ignore.git"
|
---|
29 | },
|
---|
30 | "keywords": [
|
---|
31 | "ignore",
|
---|
32 | ".gitignore",
|
---|
33 | "gitignore",
|
---|
34 | "npmignore",
|
---|
35 | "rules",
|
---|
36 | "manager",
|
---|
37 | "filter",
|
---|
38 | "regexp",
|
---|
39 | "regex",
|
---|
40 | "fnmatch",
|
---|
41 | "glob",
|
---|
42 | "asterisks",
|
---|
43 | "regular-expression"
|
---|
44 | ],
|
---|
45 | "author": "kael",
|
---|
46 | "license": "MIT",
|
---|
47 | "bugs": {
|
---|
48 | "url": "https://github.com/kaelzhang/node-ignore/issues"
|
---|
49 | },
|
---|
50 | "devDependencies": {
|
---|
51 | "@babel/cli": "^7.8.4",
|
---|
52 | "@babel/core": "^7.9.6",
|
---|
53 | "@babel/preset-env": "^7.9.6",
|
---|
54 | "codecov": "^3.7.0",
|
---|
55 | "debug": "^4.1.1",
|
---|
56 | "eslint": "^7.0.0",
|
---|
57 | "eslint-config-ostai": "^3.0.0",
|
---|
58 | "eslint-plugin-import": "^2.20.2",
|
---|
59 | "mkdirp": "^1.0.4",
|
---|
60 | "pre-suf": "^1.1.1",
|
---|
61 | "rimraf": "^3.0.2",
|
---|
62 | "spawn-sync": "^2.0.0",
|
---|
63 | "tap": "^14.10.7",
|
---|
64 | "tmp": "0.2.1",
|
---|
65 | "typescript": "^3.9.3"
|
---|
66 | },
|
---|
67 | "engines": {
|
---|
68 | "node": ">= 4"
|
---|
69 | }
|
---|
70 | }
|
---|