UNPKG

2.53 kBJSONView Raw
1{
2 "name": "ts-loader",
3 "version": "4.5.0",
4 "description": "TypeScript loader for webpack",
5 "main": "index.js",
6 "types": "dist/types/index.d.ts",
7 "scripts": {
8 "build": "tsc --version && tsc --project \"./src\"",
9 "comparison-tests": "npm link ./test/comparison-tests/testLib && node test/comparison-tests/run-tests.js",
10 "comparison-tests-generate": "node test/comparison-tests/stub-new-version.js",
11 "execution-tests": "npm i -g pnpm && node test/execution-tests/run-tests.js",
12 "test": "node test/run-tests.js",
13 "precommit": "lint-staged"
14 },
15 "lint-staged": {
16 "src/**/*.{ts,md}": [
17 "prettier --write",
18 "git add"
19 ]
20 },
21 "repository": {
22 "type": "git",
23 "url": "https://github.com/TypeStrong/ts-loader.git"
24 },
25 "keywords": [
26 "ts-loader",
27 "typescript-loader",
28 "webpack",
29 "loader",
30 "typescript",
31 "ts"
32 ],
33 "engines": {
34 "node": ">=6.11.5"
35 },
36 "author": "John Reilly <johnny_reilly@hotmail.com> (https://blog.johnnyreilly.com)",
37 "contributors": [
38 "John Reilly <johnny_reilly@hotmail.com> (https://blog.johnnyreilly.com)",
39 "James Brantly <james@jbrantly.com> (http://www.jbrantly.com/)"
40 ],
41 "license": "MIT",
42 "bugs": {
43 "url": "https://github.com/TypeStrong/ts-loader/issues"
44 },
45 "homepage": "https://github.com/TypeStrong/ts-loader",
46 "dependencies": {
47 "chalk": "^2.3.0",
48 "enhanced-resolve": "^4.0.0",
49 "loader-utils": "^1.0.2",
50 "micromatch": "^3.1.4",
51 "semver": "^5.0.1"
52 },
53 "devDependencies": {
54 "@types/micromatch": "^3.1.0",
55 "@types/node": "^9.6.2",
56 "@types/semver": "^5.4.0",
57 "babel": "^6.0.0",
58 "babel-core": "^6.0.0",
59 "babel-loader": "^7.0.0",
60 "babel-polyfill": "^6.16.0",
61 "babel-preset-es2015": "^6.0.0",
62 "babel-preset-es2016": "^6.16.0",
63 "babel-preset-react": "^6.0.0",
64 "escape-string-regexp": "^1.0.3",
65 "fs-extra": "^6.0.0",
66 "glob": "^7.1.1",
67 "html-webpack-plugin": "^3.2.0",
68 "husky": "^0.14.3",
69 "jasmine-core": "^2.5.2",
70 "karma": "^2.0.0",
71 "karma-chrome-launcher": "^2.2.0",
72 "karma-jasmine": "^1.0.0",
73 "karma-mocha-reporter": "^2.0.0",
74 "karma-sourcemap-loader": "^0.3.6",
75 "karma-webpack": "2.0.6",
76 "lint-staged": "^7.0.0",
77 "mkdirp": "^0.5.1",
78 "mocha": "^5.0.0",
79 "prettier": "^1.11.1",
80 "rimraf": "^2.6.2",
81 "typescript": "^3.0.1",
82 "webpack": "^4.5.0",
83 "webpack-cli": "^2.1.2"
84 }
85}