-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.45 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.45 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "harx",
"version": "1.0.0-beta.6",
"license": "MIT",
"author": {
"name": "Nicholas Berlette",
"email": "nick@berlette.com",
"url": "https://n.berlette.com/harx"
},
"type": "module",
"private": false,
"description": "Simple CLI tool to extract HAR data.",
"keywords": [
"http",
"archive",
"har",
"extract",
"cli",
"har-file",
"json",
"unzip"
],
"readme": "https://github.com/nberlette/harx#readme",
"homepage": "https://n.berlette.com/harx",
"bugs": "https://github.com/nberlette/harx/issues",
"files": [
"dist"
],
"main": "dist/harx.cjs",
"module": "dist/harx.js",
"unpkg": "dist/harx.js",
"types": "dist/harx.d.ts",
"bin": {
"harx": "./dist/cli.js"
},
"exports": {
".": {
"import": "./dist/harx.js",
"require": "./dist/harx.cjs"
},
"./cli": {
"import": "./dist/cli.js"
},
"./package.json": "./package.json"
},
"repository": "nberlette/harx",
"scripts": {
"build": "rollup -c",
"test": "mocha \"test/**/*.ts\"",
"lint": "prettier --check \"**/*.{mjs,cjs,js,jsx,ts,tsx,css}\"",
"lint:fix": "prettier --write \"**/*.{mjs,cjs,js,jsx,ts,tsx,css}\""
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 2,
"semi": true,
"useTabs": false,
"arrowParens": "always",
"trailingComma": "es5"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.1",
"@rollup/plugin-typescript": "^8.3.0",
"@types/har-format": "~1.2.8",
"@types/mocha": "~9.0.0",
"@types/node": "~17.0.2",
"del": "~6.0.0",
"glob": "~7.2.0",
"husky": "~7.0.4",
"lint-staged": "~12.1.3",
"mocha": "~9.1.3",
"prettier": "~2.5.1",
"rewrite-imports": "2.0.3",
"rollup": "^2.61.1",
"rollup-plugin-preserve-shebang": "^1.0.1",
"ts-node": "~10.4.0",
"ts-node-test-register": "~10.0.0",
"tslib": "^2.3.1",
"typescript": "~4.6.0-dev.20211228",
"zlib": "~1.0.5"
},
"husky": {
"hooks": {
"post-commit": "git reset",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{mjs,cjs,js,jsx,ts,tsx,css}": [
"prettier --write",
"git add"
]
},
"mocha": {
"require": [
"ts-node-test-register"
]
},
"dependencies": {
"filenamify": "5.0.2",
"humanize-url": "3.0.0",
"kleur": "4.1.4",
"meow": "10.1.2"
}
}