forked from s-panferov/awesome-typescript-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.1 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
{
"name": "awesome-typescript-loader",
"version": "0.16.0-rc.0",
"description": "Awesome TS loader for webpack",
"main": "dist.babel/index.js",
"scripts": {
"grunt": "grunt",
"prepublish": "grunt",
"babel": "babel dist --presets es2015 --out-dir dist.babel --watch --source-maps",
"babel-compile": "babel dist --presets es2015 --out-dir dist.babel --source-maps",
"test": "mocha dist.babel/test",
"build": "npm run grunt && npm run babel-compile",
"lint": "./node_modules/.bin/tslint src/*.ts"
},
"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": {
"babel-polyfill": "^6.1.19",
"colors": "^1.1.2",
"enhanced-resolve": "^0.9.1",
"es6-promisify": "^3.0.0",
"loader-utils": "^0.2.6",
"lodash": "^3.10.1",
"object-assign": "^2.1.1",
"parse-json": "^2.2.0",
"source-map-support": "^0.4.0",
"strip-bom": "^2.0.0",
"strip-json-comments": "^2.0.0",
"tsconfig": "^2.1.1"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-preset-es2015": "^6.1.2",
"babel-preset-es2015-node4": "^1.0.0",
"babel-preset-stage-2": "^6.1.2",
"bluebird": "^3.3.3",
"chai": "^3.5.0",
"git-hooks": "0.0.10",
"grunt": "^0.4.5",
"grunt-bump": "^0.3.1",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-copy": "^0.7.0",
"grunt-conventional-changelog": "^1.2.1",
"grunt-shell": "^1.1.2",
"grunt-ts": "^3.0.0",
"load-grunt-tasks": "^0.6.0",
"mkdirp": "^0.5.1",
"mocha": "^2.3.4",
"ps-node": "0.0.5",
"rimraf": "^2.5.0",
"tslint": "3.5.0-dev.1",
"typescript": "^1.9.0-dev.20160303",
"webpack": "^1.12.12",
"webpack-dev-server": "^1.14.1"
}
}