-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
48 lines (48 loc) · 1.06 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
{
"name": "tspath",
"version": "2.6.2",
"description": "TypeScript path alias resolver, re-writes JS files with relative paths according to @paths specified in tsconfig",
"license": "LGPL-2.1",
"scripts": {
"copy": "copyfiles package.json lib",
"tspath": "node ./tspath.js"
},
"preferGlobal": true,
"main": "index.js",
"bin": {
"tspath": "./tspath.js"
},
"keywords": [
"tspath",
"relative",
"path",
"typescript",
"path",
"resolve",
"alias"
],
"author": "Patrik Forsberg <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/duffman/tspath.git"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.42",
"@types/node": "^8.0.25",
"@typescript-eslint/typescript-estree": "^5.40.0",
"chai": "^4.1.2",
"copyfiles": "^2.4.1",
"mocha": "^3.5.0",
"prettier": "^2.7.1"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"dina-common": "^1.1.5",
"escodegen": "^2.0.0",
"espree": "^9.4.0",
"prompt-confirm": "^1.2.0",
"typescript": "^4.4.2",
"yargs": "^11.0.0"
}
}