-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.82 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
{
"name": "esbuild-copy-files",
"version": "0.2.16",
"description": "esbuild plugin to copy static files",
"keywords": [
"esbuild",
"copy-files",
"esbuild-plugin",
"typescript",
"esbuild-typescript-plugin",
"copy-static-files",
"esbuild-plugin",
"nodejs",
"webpack"
],
"homepage": "https://github.com/tiavina-mika/esbuild-copy-files",
"bugs": {
"url": "https://github.com/tiavina-mika/esbuild-copy-files/issues"
},
"author": {
"name": "Tiavina Michael Ralainirina",
"email": "[email protected]",
"github": "https://github.com/tiavina-mika"
},
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/tiavina-mika/esbuild-copy-files.git",
"types": "./dist/types.d.ts",
"main": "dist/index.js",
"exports": {
".": {
"types": "./dist/types.d.ts",
"require": "./dist/index.js"
}
},
"files": [
"/dist"
],
"scripts": {
"start": "node index.ts",
"watch:server": "node ./build.watch.config.js",
"watch:restart-server": "nodemon --config nodemon.json",
"dev": "npx concurrently \"yarn watch:server\" \"yarn watch:restart-server\"",
"lint:check": "eslint",
"lint": "eslint src --ext ts --fix",
"build": "node ./build.config.js",
"md-link:check": "markdown-link-check -v -p README.md -v -p CONTRIBUTING.md -v -p .github/**/*.md -c .markdown-link-check-config.json",
"spell:check": "cspell \"{README.md,CONTRIBUTING.md,.github/*.md}\"",
"test": "jest",
"test:watch": "jest watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"anymatch": "^3.1.3",
"chokidar": "^3.6.0",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@types/async": "^3.2.24",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.20.0",
"babel-plugin-module-resolver": "^5.0.0",
"concurrently": "^8.2.2",
"cspell": "^6.31.1",
"esbuild": "^0.20.0",
"esbuild-node-externals": "^1.13.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prefer-arrow-functions": "^3.2.4",
"eslint-plugin-prettier": "^5.1.3",
"fs-extra": "^11.1.1",
"jest": "^29.7.0",
"markdown-link-check": "^3.12.1",
"nodemon": "^3.1.4",
"prettier": "^3.2.2",
"ts-jest": "^29.2.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"esbuild": ">= 0.14.0"
},
"packageManager": "[email protected]"
}