UNPKG

3.19 kBJSONView Raw
1{
2 "name": "ts-loader",
3 "version": "7.0.5",
4 "description": "TypeScript loader for webpack",
5 "main": "index.js",
6 "types": "dist",
7 "scripts": {
8 "build": "tsc --version && tsc --project \"./src\"",
9 "lint": "tslint --project \"./src\"",
10 "comparison-tests": "git clean -xfd test/comparison-tests && npm link ./test/comparison-tests/testLib && node test/comparison-tests/run-tests.js",
11 "comparison-tests-generate": "git clean -xfd test/comparison-tests && node test/comparison-tests/stub-new-version.js",
12 "execution-tests": "git clean -xfd test/execution-tests && node test/execution-tests/run-tests.js",
13 "test": "git clean -xfd test/comparison-tests && git clean -xfd test/execution-tests && node test/run-tests.js",
14 "clean": "git clean -xfd test/comparison-tests && git clean -xfd test/execution-tests",
15 "docker:build": "docker build -t ts-loader .",
16 "postdocker:build": "docker run -it ts-loader yarn test",
17 "generate-toc": "markdown-toc -i ./README.md && git add README.md && git commit -m \"chore: update docs\""
18 },
19 "husky": {
20 "hooks": {
21 "pre-commit": "lint-staged"
22 }
23 },
24 "lint-staged": {
25 "src/**/*.{ts,md}": [
26 "prettier --write",
27 "git add"
28 ]
29 },
30 "repository": {
31 "type": "git",
32 "url": "https://github.com/TypeStrong/ts-loader.git"
33 },
34 "keywords": [
35 "ts-loader",
36 "typescript-loader",
37 "webpack",
38 "loader",
39 "typescript",
40 "ts"
41 ],
42 "engines": {
43 "node": ">=10.0.0"
44 },
45 "author": "John Reilly <johnny_reilly@hotmail.com> (https://blog.johnnyreilly.com)",
46 "contributors": [
47 "John Reilly <johnny_reilly@hotmail.com> (https://blog.johnnyreilly.com)",
48 "James Brantly <james@jbrantly.com> (http://www.jbrantly.com/)"
49 ],
50 "license": "MIT",
51 "bugs": {
52 "url": "https://github.com/TypeStrong/ts-loader/issues"
53 },
54 "homepage": "https://github.com/TypeStrong/ts-loader",
55 "dependencies": {
56 "chalk": "^2.3.0",
57 "enhanced-resolve": "^4.0.0",
58 "loader-utils": "^1.0.2",
59 "micromatch": "^4.0.0",
60 "semver": "^6.0.0"
61 },
62 "devDependencies": {
63 "@types/micromatch": "^3.1.0",
64 "@types/node": "*",
65 "@types/semver": "^6.0.0",
66 "@types/webpack": "^4.4.30",
67 "babel": "^6.0.0",
68 "babel-core": "^6.0.0",
69 "babel-loader": "^7.0.0",
70 "babel-polyfill": "^6.16.0",
71 "babel-preset-es2015": "^6.0.0",
72 "babel-preset-es2016": "^6.16.0",
73 "babel-preset-react": "^6.0.0",
74 "escape-string-regexp": "^2.0.0",
75 "fs-extra": "^7.0.0",
76 "glob": "^7.1.1",
77 "html-webpack-plugin": "^3.2.0",
78 "husky": "^2.0.0",
79 "jasmine-core": "^3.0.0",
80 "karma": "^4.0.0",
81 "karma-chrome-launcher": "^2.2.0",
82 "karma-jasmine": "^2.0.0",
83 "karma-mocha-reporter": "^2.0.0",
84 "karma-sourcemap-loader": "^0.3.6",
85 "karma-webpack": "^4.0.0-rc.5",
86 "lint-staged": "^8.0.0",
87 "markdown-toc": "^1.2.0",
88 "mkdirp": "^0.5.1",
89 "mocha": "^6.0.0",
90 "prettier": "^1.11.1",
91 "rimraf": "^2.6.2",
92 "tslint": "^5.11.0",
93 "tslint-config-prettier": "^1.15.0",
94 "typescript": "^3.6.2",
95 "webpack": "^4.5.0",
96 "webpack-cli": "^3.1.1"
97 },
98 "peerDependencies": {
99 "typescript": "*"
100 }
101}