UNPKG

1.87 kBJSONView Raw
1{
2 "name": "awesome-typescript-loader",
3 "version": "3.0.8",
4 "description": "Awesome TS loader for webpack",
5 "main": "dist/entry.js",
6 "typings": "./dist/index.d.ts",
7 "scripts": {
8 "prepublish": "npm run build",
9 "watch": "npm run watch:ts",
10 "watch:ts": "npm run build:ts -- --watch --diagnostics",
11 "prebuild": "npm run lint",
12 "compile": "tsc --pretty",
13 "build": "rimraf dist && tsc --pretty",
14 "lint": "tslint src/*.ts",
15 "release": "standard-version",
16 "test": "rimraf .test && mocha --timeout 30000 dist/__test__"
17 },
18 "author": "Stanislav Panferov <fnight.m@gmail.com> (http://panferov.me/)",
19 "repository": {
20 "type": "git",
21 "url": "https://github.com/s-panferov/awesome-typescript-loader.git"
22 },
23 "license": "MIT",
24 "keywords": [
25 "webpack",
26 "loader",
27 "webpack-loader",
28 "typescript"
29 ],
30 "bugs": {
31 "url": "https://github.com/s-panferov/awesome-typescript-loader/issues"
32 },
33 "homepage": "https://github.com/s-panferov/awesome-typescript-loader",
34 "dependencies": {
35 "colors": "^1.1.2",
36 "enhanced-resolve": "^3.1.0",
37 "loader-utils": "^1.0.2",
38 "lodash": "^4.17.4",
39 "mkdirp": "^0.5.1",
40 "object-assign": "^4.1.1",
41 "source-map-support": "^0.4.11"
42 },
43 "devDependencies": {
44 "@types/chai": "^3.4.34",
45 "@types/colors": "^1.1.1",
46 "@types/lodash": "^4.14.52",
47 "@types/mocha": "^2.2.39",
48 "@types/node": "^7.0.5",
49 "@types/shelljs": "^0.7.0",
50 "@types/sinon": "^1.16.35",
51 "@types/webpack": "^2.2.6",
52 "bluebird": "^3.4.7",
53 "chai": "^3.5.0",
54 "empty-module": "0.0.2",
55 "fs-extra": "^2.0.0",
56 "mocha": "^3.2.0",
57 "ps-node": "^0.1.1",
58 "rimraf": "^2.5.0",
59 "shelljs": "^0.7.6",
60 "standard-version": "^4.0.0",
61 "temp": "^0.8.3",
62 "tslint": "^4.4.2",
63 "typescript": "^2.1.6",
64 "webpack": "^2.2.1"
65 }
66}