UNPKG

1.85 kBJSONView Raw
1{
2 "name": "typescript-transform-paths",
3 "version": "1.1.15",
4 "description": "Transforms absolute imports to relative",
5 "keywords": [
6 "typescript",
7 "transform",
8 "transformer",
9 "plugin",
10 "path",
11 "import",
12 "require",
13 "relative",
14 "absolute"
15 ],
16 "homepage": "https://github.com/LeDDGroup/typescript-transform-paths#readme",
17 "bugs": {
18 "url": "https://github.com/LeDDGroup/typescript-transform-paths/issues"
19 },
20 "repository": {
21 "type": "git",
22 "url": "git+https://github.com/LeDDGroup/typescript-transform-paths.git"
23 },
24 "license": "MIT",
25 "author": "Daniel Perez Alvarez <danielpza@protonmail.com>",
26 "files": [
27 "lib"
28 ],
29 "main": "lib/index.js",
30 "types": "lib/index.d.ts",
31 "directories": {
32 "lib": "lib",
33 "test": "tests"
34 },
35 "scripts": {
36 "prebuild": "rm -rf lib",
37 "build": "tsc",
38 "prepare": "npm run build",
39 "release": "standard-version",
40 "pretest": "npm run build && rm -rf tests/__result",
41 "test": "tsc -p tests/__fixtures/with-path/tsconfig.json --outDir tests/__result/with-path/original && ttsc -p tests/__fixtures/with-path/tsconfig.json --outDir tests/__result/with-path/generated && tsc -p tests/__fixtures/without-path/tsconfig.json --outDir tests/__result/without-path/original && ttsc -p tests/__fixtures/without-path/tsconfig.json --outDir tests/__result/without-path/generated && jest"
42 },
43 "jest": {
44 "preset": "ts-jest",
45 "testEnvironment": "node",
46 "testMatch": [
47 "**/tests/index.ts"
48 ]
49 },
50 "devDependencies": {
51 "@types/fs-readdir-recursive": "^1.0.0",
52 "@types/jest": "^24.0.15",
53 "@types/node": "^12.0.2",
54 "fs-readdir-recursive": "^1.1.0",
55 "jest": "^24.8.0",
56 "standard-version": "^6.0.1",
57 "ts-jest": "^24.0.2",
58 "ttypescript": "^1.5.6",
59 "typescript": "^3.9.7"
60 }
61}