forked from dividab/tsconfig-paths-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.54 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
{
"name": "tsconfig-paths-webpack-plugin",
"version": "3.2.0",
"description": "Load modules according to tsconfig paths in webpack.",
"main": "lib/index.js",
"types": "lib/index",
"author": "Jonas Kello",
"license": "MIT",
"repository": "https://github.com/dividab/tsconfig-paths-webpack-plugin",
"dependencies": {
"chalk": "^2.3.0",
"enhanced-resolve": "^4.0.0",
"tsconfig-paths":
"tallarium/tsconfig-paths#619e595cdf87d283dccd4e63558d77bcdbd2442b"
},
"devDependencies": {
"@types/colors": "^1.1.3",
"@types/lodash": "^4.14.68",
"@types/node": "^8.0.9",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"rimraf": "^2.6.2",
"shelljs": "^0.7.8",
"ts-loader": "^2.2.2",
"ts-node": "^6.0.3",
"tslint": "^5.8.0",
"tslint-immutable": "^4.4.0",
"typescript": "^2.4.1",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.11"
},
"scripts": {
"precommit": "lint-staged",
"compile": "tsc -p src",
"compile:tests": "tsc -p tests",
"compile:example": "tsc -p example",
"example": "yarn build && cd example && webpack",
"build": "rimraf lib && tsc -p src",
"lint":
"tslint -t msbuild './src/**/*.ts{,x}' -e './src/node_modules/**/*'",
"publish:major": "yarn run build && node scripts/publish.js major",
"publish:minor": "yarn run build && node scripts/publish.js minor",
"publish:patch": "yarn run build && node scripts/publish.js patch"
},
"lint-staged": {
"*.{ts,tsx}": "tslint",
"*.{ts,tsx,json,css}": ["prettier --write", "git add"]
}
}