-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.46 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.46 KB
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
{
"name": "import-aliases",
"version": "1.0.2",
"description": "Advanced library for setting up absolute path imports with aliases like @app/ in JavaScript/TypeScript projects",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"postinstall": "node scripts/postinstall.js",
"test": "jest --coverage",
"start:dev": "cross-env IS_TS_NODE=true nodemon --watch './**/*.js' --exec 'npm test'",
"start:example": "node ./examples/simple-example.js",
"build:example-ts": "cross-env IS_TS_NODE=true ts-node -r ./examples/typescript-example.ts",
"prepublishOnly": "npm test"
},
"keywords": [
"typescript",
"javascript",
"import",
"alias",
"path",
"module",
"absolute",
"tsconfig",
"jsconfig"
],
"author": "Alamin Dev😐😐",
"license": "MIT",
"dependencies": {
"cross-env": "^7.0.3",
"module-alias": "^2.2.3",
"tsconfig-paths": "^4.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.3.1",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/Alamin-Juma/import-aliases.git"
},
"bugs": {
"url": "https://github.com/Alamin-Juma/import-aliases/issues"
},
"homepage": "https://github.com/Alamin-Juma/import-aliases#readme",
"files": [
"index.js",
"index.d.ts",
"README.md",
"LICENSE",
"scripts/postinstall.js"
]
}