This repository has been archived by the owner on Jul 25, 2023. It is now read-only.
forked from TypeStrong/ts-loader
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.83 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
{
"name": "ts-loader",
"version": "1.3.3",
"description": "TypeScript loader for webpack",
"main": "index.js",
"scripts": {
"build": "tsc --version && tsc --project \"./src\"",
"comparison-tests": "npm link ./test/comparison-tests/testLib && node test/comparison-tests/run-tests.js",
"execution-tests": "node test/execution-tests/run-tests.js",
"test": "node test/run-tests.js"
},
"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": {
"colors": "^1.0.3",
"enhanced-resolve": "^3.0.0",
"loader-utils": "^0.2.6",
"object-assign": "^4.1.0",
"semver": "^5.0.1"
},
"devDependencies": {
"babel": "^6.0.0",
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-es2016": "^6.16.0",
"babel-preset-react": "^6.0.0",
"escape-string-regexp": "^1.0.3",
"fs-extra": "^1.0.0",
"glob": "^7.1.1",
"html-webpack-plugin": "^2.17.0",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-jasmine": "^1.0.0",
"karma-mocha-reporter": "^2.0.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"mkdirp": "^0.5.1",
"mocha": "^3.1.0",
"phantomjs-prebuilt": "^2.1.2",
"rimraf": "^2.4.2",
"typescript": "^2.1.4",
"typings": "^2.0.0",
"vue": "^2.0.5",
"vue-loader": "^9.7.0",
"webpack": "^1.11.0"
}
}