-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
85 lines (85 loc) · 1.81 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
{
"name": "har-extractor",
"version": "1.1.2",
"description": "A CLI that extract har file to directory.",
"keywords": [
"archieve",
"directory",
"extract",
"file",
"folder",
"har",
"unzip"
],
"homepage": "https://github.com/azu/har-extractor",
"bugs": {
"url": "https://github.com/azu/har-extractor/issues"
},
"license": "MIT",
"author": "azu",
"files": [
"bin/",
"lib/",
"src/"
],
"main": "lib/har-extractor.js",
"types": "lib/har-extractor.d.ts",
"bin": {
"har-extractor": "./bin/cmd.js"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/azu/har-extractor.git"
},
"scripts": {
"build": "cross-env NODE_ENV=production tsc -p .",
"clean": "rimraf lib/",
"prepublish": "npm run --if-present build",
"test": "mocha \"test/**/*.ts\"",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"watch": "tsc -p . --watch"
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4
},
"devDependencies": {
"@types/har-format": "^1.2.5",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.35",
"cross-env": "^7.0.3",
"del": "^6.0.0",
"glob": "^7.1.6",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"mocha": "^8.3.2",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"ts-node-test-register": "^9.0.1",
"typescript": "^4.2.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"filenamify": "^2.1.0",
"humanize-url": "^1.0.1",
"make-dir": "^1.3.0",
"meow": "^5.0.0"
},
"husky": {
"hooks": {
"post-commit": "git reset",
"pre-commit": "lint-staged"
}
}
}