UNPKG

2.08 kBJSONView Raw
1{
2 "name": "typescript-transform-paths",
3 "version": "3.4.2",
4 "description": "Transforms module resolution paths using TypeScript path mapping and/or custom paths",
5 "main": "dist/index.js",
6 "types": "types/index.d.ts",
7 "scripts": {
8 "compile": "tsc",
9 "build": "yarn run clean && yarn run compile",
10 "test": "jest",
11 "release": "standard-version",
12 "--------------": "",
13 "format": "prettier --write \"{src,test}/**/{*.js,!(*.d).ts}\"",
14 "clean": "npx -y rimraf dist **/*.tsbuildinfo ./test/projects/nx/dist",
15 "clean:all": "yarn run clean && npx -y rimraf node_modules **/node_modules **/yarn.lock yarn.lock",
16 "reset": "yarn run clean:all && yarn install",
17 "-------------- ": "",
18 "prebuild": "npx -y rimraf dist",
19 "install:tests": "cd test && yarn install",
20 "prepare": "yarn run install:tests"
21 },
22 "keywords": [
23 "typescript",
24 "transform",
25 "transformer",
26 "plugin",
27 "path",
28 "paths",
29 "virtual directory",
30 "import",
31 "require"
32 ],
33 "homepage": "https://github.com/LeDDGroup/typescript-transform-paths#readme",
34 "bugs": {
35 "url": "https://github.com/LeDDGroup/typescript-transform-paths/issues"
36 },
37 "repository": {
38 "type": "git",
39 "url": "git+https://github.com/LeDDGroup/typescript-transform-paths.git"
40 },
41 "license": "MIT",
42 "contributors": [
43 "Daniel Perez Alvarez <danielpza@protonmail.com>",
44 "Ron S. <ron@nonara.com>"
45 ],
46 "files": [
47 "dist",
48 "types",
49 "README.md",
50 "CHANGELOG.md",
51 "register.js",
52 "nxTransformerPlugin.js"
53 ],
54 "devDependencies": {
55 "@types/jest": "^29.2.0",
56 "@types/minimatch": "^5.1.2",
57 "@types/node": "^18.11.2",
58 "jest": "^29.2.1",
59 "prettier": "^2.7.1",
60 "rimraf": "^3.0.2",
61 "standard-version": "^9.5.0",
62 "@types/ts-expose-internals": "npm:ts-expose-internals@4.8.4",
63 "ts-jest": "^29.0.3",
64 "ts-node": "^10.9.1",
65 "ts-patch": "^1.4.5",
66 "typescript": "^4.8.4"
67 },
68 "peerDependencies": {
69 "typescript": ">=3.6.5"
70 },
71 "dependencies": {
72 "minimatch": "^3.0.4"
73 }
74}