-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.08 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": "@balena/dockerignore",
"version": "1.0.2",
"description": "dockerignore is a file filter library compatible with Docker and the node-ignore API",
"main": "./ignore.js",
"files": [
"ignore.js",
"index.d.ts"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "babel -o ignore.js index.js",
"test": "npm run build && nyc ava ./test/ignore.js"
},
"repository": {
"type": "git",
"url": "git@github.com:balena-io-modules/dockerignore.git"
},
"keywords": [
"ignore",
".dockerignore",
"dockerignore",
"rules",
"manager",
"filter",
"regexp",
"regex",
"fnmatch",
"glob",
"asterisks",
"regular-expression"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/balena-io-modules/dockerignore/issues"
},
"devDependencies": {
"async-sema": "^3.1.0",
"ava": "^0.25.0",
"@babel/cli": "^7.8.4",
"@babel/preset-env": "^7.9.6",
"chai": "^4.2.0",
"cuid": "^2.1.8",
"mkdirp": "^1.0.4",
"nyc": "^15.0.1",
"rimraf": "^3.0.2",
"tmp": "^0.2.1"
}
}