-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.28 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
{
"author": "Jackson Delahunt",
"bin": {
"tsc-path-prefix": "bin/index.sh"
},
"dependencies": {
"@lerna/project": "^3.0.0",
"ansi-colors": "^3.2.1",
"lodash": "^4.17.11",
"slice-ansi": "^2.0.0",
"split2": "^3.0.0",
"strip-ansi": "^5.0.0"
},
"description": "Prefix paths in Typescript compiler output for VS Code terminal path detection.",
"devDependencies": {
"@stemn/jest-config": "^0.0.9",
"@types/execa": "^0.9.0",
"@types/fs-extra": "^5.0.4",
"@types/get-stream": "^3.0.1",
"@types/lodash": "^4.14.117",
"@types/node": "^10.12.0",
"@types/split2": "^2.1.6",
"execa": "^1.0.0",
"fs-extra": "^7.0.0",
"get-stream": "^4.1.0",
"lerna": "^3.4.3",
"pkgd": "^1.1.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.3"
},
"license": "MIT",
"main": "build",
"name": "@stemn/tsc-path-prefix",
"private": false,
"repository": "https://github.com/stemn/tsc-path-prefix",
"scripts": {
"build": "yarn build:typescript",
"build:typescript": "tsc",
"build:watch": "yarn build:typescript --watch",
"lint": "yarn tslint --project tsconfig.lint.json",
"prepare": "yarn build:typescript",
"test": "jest",
"test:watch": "yarn test --watch"
},
"version": "0.0.5"
}