forked from TypeStrong/ts-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.18 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
{
"name": "ts-loader",
"version": "0.5.6",
"description": "TypeScript loader for webpack",
"main": "index.js",
"scripts": {
"build": "tsc index.ts --module commonjs --moduleResolution classic",
"test": "mocha --reporter spec test/run.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/TypeStrong/ts-loader.git"
},
"keywords": [
"ts-loader",
"typescript-loader",
"webpack",
"loader",
"typescript",
"ts"
],
"author": "James Brantly <[email protected]> (http://www.jbrantly.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/TypeStrong/ts-loader/issues"
},
"homepage": "https://github.com/TypeStrong/ts-loader",
"dependencies": {
"arrify": "^1.0.0",
"colors": "^1.0.3",
"enhanced-resolve": "^0.9.0",
"loader-utils": "^0.2.6",
"object-assign": "^2.0.0",
"semver": "^5.0.1"
},
"devDependencies": {
"babel-core": "^5.8.20",
"babel-loader": "^5.3.2",
"escape-string-regexp": "^1.0.3",
"fs-extra": "^0.22.1",
"mkdirp": "^0.5.1",
"mocha": "^2.1.0",
"rimraf": "^2.4.2",
"typescript": "^1.6.2",
"webpack": "^1.11.0"
}
}