-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
58 lines (58 loc) · 1.63 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
{
"name": "tscpaths",
"version": "0.0.9",
"description": "Replace absolute paths to relative paths after typescript compilation",
"main": "cjs/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"tscpaths": "cjs/index.js"
},
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc -p ./tsconfig.esm.json",
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"clear": "rm -rf ./lib ./cjs ./coverage",
"format": "prettier --write \"./*.{js,jsx,ts,tsx}\" \"./src/**/*.{js,jsx,ts,tsx}\"",
"lint": "tslint -c ./tslint.json \"src/**/*\"",
"lint:fix": "tslint --fix -c ./tslint.json \"src/**/*\"",
"start": "yarn clear && yarn format && yarn lint:fix && yarn test && yarn build",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/joonhocho/tscpaths.git"
},
"keywords": [
"typescript",
"paths",
"alias",
"absolute path",
"relative path",
"compilation",
"tsc"
],
"author": "Joon Ho Cho <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/joonhocho/tscpaths/issues"
},
"homepage": "https://github.com/joonhocho/tscpaths#readme",
"devDependencies": {
"@types/jest": "^24.0.12",
"@types/node": "^12.0.0",
"jest": "^24.8.0",
"prettier": "^1.17.0",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.5"
},
"dependencies": {
"commander": "^2.20.0",
"globby": "^9.2.0"
}
}