-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 1.98 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
{
"name": "python-arf",
"description": "Node.js wrapper around the Python package arf, which is a processor for Abuse Reporting Format (ARF) messages.",
"version": "0.0.3",
"author": "Nick Baugh <[email protected]> (http://niftylettuce.com/)",
"ava": {
"verbose": true
},
"bugs": {
"url": "https://github.com/forwardemail/python-arf/issues",
"email": "[email protected]"
},
"contributors": [
"Nick Baugh <[email protected]> (http://niftylettuce.com/)"
],
"dependencies": {
"is-buffer": "^2.0.4",
"is-valid-path": "^0.1.1",
"rev-hash": "^3.0.0",
"semver": "^7.3.2",
"shelljs": "^0.8.4"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"ava": "latest",
"codecov": "latest",
"cross-env": "latest",
"eslint": "6.x",
"eslint-config-xo-lass": "latest",
"fixpack": "latest",
"husky": "latest",
"lint-staged": "latest",
"nyc": "latest",
"remark-cli": "latest",
"remark-preset-github": "latest",
"xo": "0.25"
},
"engines": {
"node": ">= 10"
},
"homepage": "https://github.com/forwardemail/python-arf",
"keywords": [
"abuse",
"arf",
"email",
"emails",
"feedback",
"format",
"formats",
"message",
"messages",
"parse",
"parser",
"parsing",
"pip",
"python",
"report",
"reporting",
"wrapper"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/forwardemail/python-arf"
},
"scripts": {
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "yarn run lint:js && yarn run lint:md",
"lint:js": "xo",
"lint:md": "remark . -qfo",
"pretest": "yarn run lint",
"test": "cross-env NODE_ENV=test ava",
"test-coverage": "cross-env NODE_ENV=test nyc yarn run test"
},
"xo": {
"prettier": true,
"space": true,
"extends": [
"xo-lass"
]
}
}