-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.11 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@tuckn/fs-hospitality",
"description": "Extra methods for Node.js fs object. e.g. readAsText read a file with automatically detecting a character encoding. ",
"version": "1.4.3",
"author": "Tuckn <tuckn333@gmail.com>",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tuckn"
},
"private": false,
"license": "MIT",
"homepage": "https://docs.tuckn.net/node-fs-hospitality",
"repository": {
"type": "git",
"url": "https://github.com/tuckn/node-fs-hospitality.git"
},
"bugs": {
"type": "git",
"url": "https://github.com/tuckn/node-fs-hospitality/issues"
},
"keywords": [
"fs",
"file",
"file system",
"read",
"write",
"text",
"character"
],
"files": [
"dist"
],
"main": "./dist/lib/index.js",
"bin": {
"fs-hospitality": "./dist/bin/index.js"
},
"scripts": {
"ncu:checkUpdate": "npx npm-check-updates",
"ncu:upgrade": "npx npm-check-updates --upgrade && npm install",
"lint:eslint": "eslint --ext .js,.ts ./src/",
"lint:prettier": "prettier -l \"**/*.{json,css,md,yml,yaml}\"",
"lint:type": "tsc --noEmit",
"lint": "run-p lint:*",
"fix:eslint": "npm run lint:eslint -- --fix --ext .js,.ts ./src/",
"fix:prettier": "npm run lint:prettier -- --write",
"fix": "run-p fix:*",
"test": "jest --coverage",
"prebuild": "rimraf ./dist",
"build:common": "tsc",
"build": "run-p build:*",
"predocs": "npm run build && rimraf ./docs",
"docs:common": "jsdoc --configure ./jsdoc.json",
"cp-docs-css": "cpy --flat ./assets/styles/jsdoc.css ./docs/styles/",
"cp-docs-img": "cpy ./assets/img/**/* ./docs/img/",
"postdocs": "run-p cp-docs-*",
"docs": "run-s docs:*",
"prepublishOnly": "npm run build",
"npmPublish": "npm publish ./"
},
"husky": {
"hooks": {
"pre-commit": "echo @FIXME \"npx lint-staged\" fixes all .js!"
}
},
"lint-staged": {
"*.{js,ts}": "eslint --fix",
"*.{json,css,md,yml,yaml}": "prettier --write"
},
"dependencies": {
"cd": "0.3.3",
"chalk": "^5.0.1",
"chardet": "^1.4.0",
"commander": "^9.3.0",
"encoding-japanese": "2.0.0",
"iconv-lite": "^0.6.3",
"lodash": "^4.17.21",
"tslib": "^2.4.0",
"uuid": "8.3.2"
},
"devDependencies": {
"@tuckn/insert-gtag": "^1.1.1",
"@types/chardet": "0.8.1",
"@types/encoding-japanese": "2.0.0",
"@types/jest": "^28.1.4",
"@types/lodash": "4.14.182",
"@types/rimraf": "^3.0.2",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.30.4",
"@typescript-eslint/parser": "5.30.4",
"cpy-cli": "^4.1.0",
"docdash": "1.2.0",
"eslint": "8.19.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "7.0.0",
"husky": "^8.0.1",
"jest": "^28.1.2",
"jsdoc": "3.6.10",
"lint-staged": "13.0.3",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
}
}