forked from s-panferov/awesome-typescript-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.93 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
{
"name": "awesome-typescript-loader",
"version": "2.0.1",
"description": "Awesome TS loader for webpack",
"main": "dist/entry.js",
"scripts": {
"prepublish": "npm run build",
"test": "mocha dist.babel/test",
"watch": "npm run watch:ts",
"watch:ts": "npm run build:ts -- --watch --diagnostics",
"watch:babel": "babel dist --watch --out-dir dist.babel",
"prebuild": "npm run lint",
"build": "npm run build:ts",
"build:ts": "tsc -p src --pretty",
"build:babel": "babel dist --out-dir dist.babel",
"lint": "tslint src/*.ts"
},
"author": "Stanislav Panferov <fnight.m@gmail.com> (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": {
"colors": "^1.1.2",
"enhanced-resolve": "^2.2.2",
"loader-utils": "^0.2.6",
"lodash": "^4.13.1",
"object-assign": "^4.1.0",
"source-map-support": "^0.4.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-preset-es2015": "^6.9.0",
"bluebird": "^3.4.1",
"chai": "^3.5.0",
"git-hooks": "^1.0.2",
"grunt": "^1.0.1",
"grunt-bump": "^0.3.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-conventional-changelog": "^6.1.0",
"grunt-shell": "^1.1.2",
"load-grunt-tasks": "^3.5.0",
"loader": "^2.1.1",
"mkdirp": "^0.5.1",
"mocha": "^2.3.4",
"ps-node": "^0.1.1",
"rimraf": "^2.5.0",
"sinon": "^1.17.4",
"temp": "^0.8.3",
"tslint": "^3.13.0-dev.0",
"typescript": "^2.0.0-dev.20160706",
"webpack": "2.1.0-beta.4"
}
}