forked from codemix/gitignore-parser
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.11 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@gerhobbelt/gitignore-parser",
"version": "0.2.0-10",
"description": "A simple .gitignore parser.",
"keywords": [
"gitignore",
"git",
".gitignore",
"git ignore"
],
"author": {
"name": "Charles Pick",
"email": "charles@codemix.com"
},
"repository": "GerHobbelt/gitignore-parser",
"license": "Apache License, Version 2.0",
"source": "./lib/index.js",
"main": "dist/gitignoreParser.js",
"module": "dist/gitignoreParser.mjs",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "make",
"test": "make test",
"todo": "make todo",
"clean": "make clean",
"superclean": "make superclean",
"doc": "make doc",
"lint": "make lint",
"lintfix": "make lintfix",
"cov": "make report-coverage",
"pub": "npm publish --access public"
},
"devDependencies": {
"@gerhobbelt/markdown-it-testgen": "0.1.6-15",
"@gerhobbelt/prepend-header": "1.0.8-3",
"cross-env": "7.0.2",
"eslint": "7.4.0",
"microbundle": "0.12.2",
"mocha": "8.0.1",
"nyc": "15.1.0"
},
"reporter": [
"lcov",
"text",
"text-summary"
]
}