-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
90 lines (90 loc) · 2.33 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
88
89
90
{
"name": "f5-corkscrew",
"description": "extracting tmos config",
"author": "F5DevCentral",
"version": "1.4.2",
"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.8",
"@types/balanced-match": "^3.0.1",
"@types/decompress": "^4.2.6",
"@types/deepmerge": "^2.2.0",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.3",
"@types/node": "^16.11.7",
"@types/object-path": "^0.11.3",
"@types/tar": "^6.1.7",
"@types/tar-stream": "^3.1.2",
"@types/uuid": "^9.0.6",
"@types/yargs": "^17.0.29",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"assert": "^2.1.0",
"eslint": "^8.52.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"ts-node": "^10.4.0",
"typescript": "^5.2.2"
},
"dependencies": {
"balanced-match": "^3.0.1",
"decompress": "^4.2.1",
"deepmerge-ts": "^5.1.0",
"f5-conx-core": "^0.17.2",
"fast-xml-parser": "^4.3.2",
"glob": "^10.3.10",
"object-path": "^0.11.8",
"tar": "^6.2.0",
"tar-stream": "^3.1.6",
"uuid": "^9.0.1",
"xregexp": "^5.1.1",
"yargs": "^17.7.2",
"zlib": "^1.0.5"
}
}