UNPKG

1.59 kBJSONView Raw
1{
2 "name": "ignore",
3 "version": "5.0.1",
4 "description": "Ignore is a manager and filter for .gitignore rules.",
5 "files": [
6 "legacy.js",
7 "index.js",
8 "index.d.ts",
9 "LICENSE-MIT"
10 ],
11 "scripts": {
12 "prepublish": "npm run build",
13 "build": "babel -o legacy.js index.js",
14 "test:lint": "eslint .",
15 "test:tsc": "tsc ./test/ts/simple.ts",
16 "test:git": "tap test/git-check-ignore.js",
17 "test:ignore": "tap test/ignore.js",
18 "test:others": "tap test/others.js",
19 "test:cases": "tap test/*.js --coverage",
20 "test-no-report": "npm run test:lint && npm run test:tsc && npm run test:cases",
21 "test": "npm run test-no-report",
22 "posttest": "tap --coverage-report=html && codecov"
23 },
24 "repository": {
25 "type": "git",
26 "url": "git@github.com:kaelzhang/node-ignore.git"
27 },
28 "keywords": [
29 "ignore",
30 ".gitignore",
31 "gitignore",
32 "npmignore",
33 "rules",
34 "manager",
35 "filter",
36 "regexp",
37 "regex",
38 "fnmatch",
39 "glob",
40 "asterisks",
41 "regular-expression"
42 ],
43 "author": "kael",
44 "license": "MIT",
45 "bugs": {
46 "url": "https://github.com/kaelzhang/node-ignore/issues"
47 },
48 "devDependencies": {
49 "babel-cli": "^6.26.0",
50 "babel-preset-env": "^1.7.0",
51 "codecov": "^3.0.4",
52 "eslint": "^5.3.0",
53 "eslint-config-ostai": "^1.3.2",
54 "eslint-plugin-import": "^2.13.0",
55 "mkdirp": "^0.5.1",
56 "pre-suf": "^1.1.0",
57 "rimraf": "^2.6.2",
58 "spawn-sync": "^2.0.0",
59 "tap": "^12.0.1",
60 "tmp": "0.0.33",
61 "typescript": "^3.0.1"
62 },
63 "engines": {
64 "node": ">= 4"
65 }
66}