-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.97 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.97 KB
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
{
"name": "f5-corkscrew",
"description": "extracting tmos config",
"author": "F5DevCentral",
"version": "1.6.1",
"license": "Apache-2.0",
"homepage": "https://github.com/f5devcentral/f5-corkscrew#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"corkscrew": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/f5devcentral/f5-corkscrew.git"
},
"scripts": {
"lint": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}' 'src/tests/**/*.{js,ts,tsx}'",
"test": "nyc mocha -r ts-node/register \"tests/*.tests.ts\"",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"build-code-docs": "typedoc --out code_docs src",
"compile": "tsc -p .",
"watch": "tsc -watch -p ./",
"build-package": "npm run compile && npm pack"
},
"bugs": {
"url": "https://github.com/f5devcentral/f5-corkscrew/issues"
},
"nyc": {
"check-coverage": false,
"lines": 50,
"functions": 50,
"branches": 50,
"statements": 50,
"reporter": [
"html",
"text"
],
"cache": false
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended"
],
"rules": {
"no-unused-vars": "off"
}
},
"mocha": {
"timeout": 120000
},
"devDependencies": {
"@types/assert": "^1.5.11",
"@types/mocha": "^10.0.10",
"@types/node": "^22.18.13",
"@types/tar": "^6.1.13",
"@types/tar-stream": "^3.1.4",
"@types/yargs": "^17.0.34",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"assert": "^2.1.0",
"eslint": "^9.38.0",
"mocha": "^11.7.4",
"nyc": "^17.1.0",
"tar": "^7.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"deepmerge-ts": "^7.1.5",
"fast-xml-parser": "^5.3.0",
"glob": "^13.0.0",
"tar-stream": "^3.1.7",
"uuid": "^13.0.0",
"yargs": "^18.0.0"
}
}