forked from joonhocho/tscpaths
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.96 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@modii/tscpaths",
"version": "0.2.3",
"description": "Replace absolute paths to relative paths after typescript compilation",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"tscpaths": "lib/index.js"
},
"scripts": {
"prepublish": "npm start",
"build": "tsc",
"clear": "node clear",
"format": "prettier --write \"./*.{js,jsx,ts,tsx}\" \"./src/**/*.{js,jsx,ts,tsx}\"",
"lint": "eslint \"src/**/*\"",
"lint:fix": "eslint --fix \"src/**/*\"",
"start": "npm run clear && npm run format && npm run lint:fix && npm test && npm run build",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/ModiiMedia/tscpaths.git"
},
"keywords": [
"typescript",
"paths",
"alias",
"absolute path",
"relative path",
"compilation",
"tsc"
],
"author": "Joon Ho Cho <joonho1101@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/joonhocho/tscpaths/issues"
},
"homepage": "https://github.com/joonhocho/tscpaths#readme",
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "^28.1.1",
"@types/node": "^17.0.42",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"jest": "^28.1.1",
"prettier": "^2.6.2",
"ts-jest": "^28.0.4",
"typescript": "^4.7.3"
},
"dependencies": {
"commander": "^9.3.0",
"fast-glob": "^3.2.11",
"fs-extra": "^10.1.0",
"tsconfig": "^7.0.0"
}
}