-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.48 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
{
"name": "esbuild-alias-relative",
"version": "1.0.6",
"description": "A plugin to convert alias paths to relative paths",
"main": "index.js",
"filesGlob": {
"include": [
"*"
],
"exclude": [
"*.json",
".*"
]
},
"scripts": {
"build": "npm run tsc",
"dryrun": "npm run deploy -- --dry-run",
"deploy": "node scripts/expand-files.js npm.cmd publish",
"_________________________________________________________TypeScript tsc": "",
"tsc": "npm run clean && tsc",
"tsc:w": "npm run clean && tsc -w",
"_________________________________________________________Clean": "",
"clean": "rimraf dist && rimraf ./test/out",
"_________________________________________________________Test": "",
"test": "npm run clean && esr ./test/index.js",
"_________________________________________________________EsLint": "",
"lint": "eslint . -f table --ext .js,.jsx,.ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"lint:q": "npm run lint -- --quiet"
},
"keywords": [
"esbuild",
"alias",
"plugin",
"relative",
"typescript",
"node",
"nodejs"
],
"author": "shaklain <48572696+shaklain125@users.noreply.github.com>",
"homepage": "https://github.com/shaklain125/esbuild-alias-relative#README",
"repository": {
"type": "git",
"url": "git+https://github.com/shaklain125/esbuild-alias-relative.git"
},
"bugs": {
"url": "https://github.com/shaklain125/esbuild-alias-relative/issues"
},
"license": "MIT",
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/chokidar": "^2.1.3",
"@types/lodash": "^4.14.177",
"@types/node": "^16.11.7",
"@types/nodemon": "^1.19.1",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"airbnb": "0.0.2",
"esbuild-runner": "^2.2.1",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-formatter-table": "^7.32.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.3.2",
"rimraf": "^3.0.2"
},
"dependencies": {
"chalk": "^4.1.2",
"esbuild": "^0.14.47",
"fast-glob": "^3.2.7",
"lodash": "^4.17.21",
"typescript": "^4.7.4"
}
}