This repository has been archived by the owner on Feb 8, 2022. It is now read-only.
forked from s-panferov/awesome-typescript-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.07 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "awesome-typescript-loader",
"version": "5.2.1",
"description": "Awesome TS loader for webpack",
"main": "dist/entry.js",
"typings": "./dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"watch": "npm run watch:ts",
"watch:ts": "npm run build:ts -- --watch --diagnostics",
"prebuild": "npm run lint",
"compile": "tsc --pretty",
"build": "rimraf dist && tsc --pretty",
"lint": "tslint src/*.ts",
"release": "standard-version",
"test": "rimraf .test && mocha --trace-warnings --timeout 30000 --exit dist/__test__",
"precommit": "lint-staged"
},
"author": "Stanislav Panferov <[email protected]> (http://panferov.me/)",
"repository": {
"type": "git",
"url": "https://github.com/s-panferov/awesome-typescript-loader.git"
},
"license": "MIT",
"keywords": [
"webpack",
"loader",
"webpack-loader",
"typescript"
],
"bugs": {
"url": "https://github.com/s-panferov/awesome-typescript-loader/issues"
},
"homepage": "https://github.com/s-panferov/awesome-typescript-loader",
"dependencies": {
"chalk": "^2.4.1",
"enhanced-resolve": "^4.0.0",
"loader-utils": "^1.1.0",
"lodash": "^4.17.5",
"micromatch": "^3.1.9",
"mkdirp": "^0.5.1",
"source-map-support": "^0.5.3",
"webpack-log": "^1.2.0"
},
"peerDependencies": {
"typescript": "^2.7 || ^3"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/lodash": "^4.14.109",
"@types/micromatch": "^3.1.0",
"@types/mocha": "^5.2.1",
"@types/node": "^10.3.2",
"@types/shelljs": "^0.8.0",
"@types/sinon": "^5.0.1",
"@types/webpack": "^4.4.0",
"bluebird": "^3.5.1",
"chai": "^4.1.2",
"empty-module": "0.0.2",
"fs-extra": "^6.0.1",
"husky": "^0.14.3",
"lint-staged": "^7.1.3",
"mocha": "^5.2.0",
"prettier": "^1.13.5",
"ps-node": "^0.1.6",
"rimraf": "^2.6.1",
"shelljs": "^0.7.8",
"standard-version": "^4.4.0",
"temp": "^0.8.3",
"tslint": "^5.10.0",
"typescript": "^2.9.1",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.3"
}
}