-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
86 lines (86 loc) · 1.97 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
{
"name": "alias-hq",
"version": "6.2.4",
"description": "The end-to-end solution for configuring, refactoring, maintaining and using path aliases",
"bin": "bin/alias-hq",
"exports": {
".": "./src/index.js",
"./init": "./src/plugins/module-alias/init.js",
"./package.json": "./package.json"
},
"types": "types",
"files": [
"src/*",
"cli/*",
"bin/*",
"types"
],
"scripts": {
"cli": "node cli",
"setup": "node cli -- setup",
"lint": "eslint . --fix",
"test": "jest --verbose --detectOpenHandles",
"test:plugins": "jest --watch -f plugins/core.spec.js -t 'core plugins:'",
"test:coverage": "jest --coverage",
"prepare": "rimraf types && tsc"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint && npm run test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/davestewart/alias-hq.git"
},
"keywords": [
"paths",
"aliases",
"typescript",
"webstorm",
"vscode",
"rollup",
"webpack",
"jest"
],
"author": "Dave Stewart",
"license": "MIT",
"bugs": {
"url": "https://github.com/davestewart/alias-hq/issues"
},
"homepage": "https://github.com/davestewart/alias-hq#readme",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"ghooks": "^2.0.4",
"jest": "^29.7.0",
"rimraf": "^3.0.2"
},
"dependencies": {
"colors": "^1.4.0",
"get-tsconfig": "^4.8.0",
"glob": "^7.2.3",
"inquirer": "^10.1.6",
"jscodeshift": "^0.16.1",
"json5": "^2.2.3",
"module-alias": "^2.2.3",
"node-fetch": "^2.7.0",
"open": "^7.4.2",
"vue-jscodeshift-adapter": "^2.2.1"
},
"alias-hq": {
"root": "./demo",
"prefix": "@",
"folders": [
"packages",
"src"
],
"modules": [
"@packages"
]
}
}