-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.21 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "git-crypt-users",
"version": "2.0.0",
"description": "conveniently manage git-crypt users",
"keywords": [
"crypt",
"git",
"git-crypt",
"gnupg",
"gpg",
"openpgp",
"pgp"
],
"homepage": "https://github.com/jokeyrhyme/git-crypt-users-js#readme",
"bugs": {
"url": "https://github.com/jokeyrhyme/git-crypt-users-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jokeyrhyme/git-crypt-users-js.git"
},
"license": "MIT",
"author": "Ron Waldon <jokeyrhyme@gmail.com> (https://github.com/jokeyrhyme)",
"files": [
"bin",
"lib"
],
"main": "index.js",
"bin": {
"git-crypt-users-import": "bin/import.js",
"git-crypt-users-list": "bin/list.js",
"git-crypt-users-remove": "bin/remove.js",
"git-crypt-users-rotate": "bin/rotate.js"
},
"directories": {
"lib": "lib"
},
"scripts": {
"eslint": "eslint --cache --fix .",
"flow": "flow check",
"fmt": "npm run sort-package-json && npm run prettier && npm run fmt:eslint",
"fmt:eslint": "eslint --fix --no-eslintrc --parser-options \"ecmaVersion:2018,ecmaFeatures:{jsx:true}\" --rule \"key-spacing:[error,{align:value}]\" .",
"jest": "jest",
"lint": "npm run eslint && npm run flow",
"prettier": "npx -q prettier --loglevel=warn --write \"**/*.{css,htm,html,js,json,jsx,md,less,scss,ts,tsx,vue}\"",
"sort-package-json": "npx -q sort-package-json",
"pretest": "npm run fmt",
"test": "npm run jest && npm run lint && npm audit"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"eslintIgnore": [
"coverage",
"flow-typed"
],
"jest": {
"collectCoverage": true,
"coverageThreshold": {
"global": {
"lines": 90
}
}
},
"dependencies": {
"debug": "^4.1.1",
"execa": "^2.0.3",
"mkdirp": "^0.5.1",
"node-fetch": "^2.6.0",
"openpgp": "^4.5.5",
"rimraf": "^2.6.3",
"which": "^1.3.1"
},
"devDependencies": {
"eslint": "^6.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"flow-bin": "^0.103.0",
"jest": "^24.8.0"
},
"engines": {
"node": ">=10",
"npm": ">=6"
}
}