-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
56 lines (56 loc) · 1.35 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
{
"name": "@ietf-tools/idnits",
"version": "3.0.0-alpha",
"description": "Library / CLI to inspect Internet-Draft documents for a variety of conditions to conform with IETF policies.",
"main": "lib/index.mjs",
"type": "module",
"scripts": {
"test": "cross-env NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ietf-tools/idnits.git"
},
"keywords": [
"nits",
"internet-drafts",
"ietf"
],
"author": "IETF Tools",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/ietf-tools/idnits/issues"
},
"homepage": "https://github.com/ietf-tools/idnits#readme",
"private": false,
"bin": "./cli.js",
"engines": {
"node": ">=18"
},
"dependencies": {
"chalk": "5.2.0",
"entities": "4.5.0",
"fast-xml-parser": "4.3.4",
"jschardet": "3.0.0",
"lodash-es": "4.17.21",
"luxon": "3.2.1",
"ora": "6.3.0",
"semver": "7.6.0",
"yargs": "17.7.1"
},
"devDependencies": {
"@jest/globals": "29.5.0",
"cross-env": "7.0.3",
"eslint": "8.35.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-n": "15.6.1",
"eslint-plugin-promise": "6.1.1",
"jest": "29.5.0",
"jest-fetch-mock": "3.0.3"
},
"files": [
"cli.js",
"lib"
]
}