forked from Adam-Meisen/awesome-typescript-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.82 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": "awesome-typescript-loader",
"version": "3.1.3",
"description": "Awesome TS loader for webpack",
"main": "dist/entry.js",
"typings": "./dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"watch": "npm run watch:ts",
"watch:ts": "npm run build:ts -- --watch --diagnostics",
"prebuild": "npm run lint",
"compile": "tsc --pretty",
"build": "rimraf dist && tsc --pretty",
"lint": "tslint src/*.ts",
"release": "standard-version",
"test": "rimraf .test && mocha --timeout 30000 dist/__test__"
},
"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": {
"colors": "^1.1.2",
"enhanced-resolve": "^3.1.0",
"loader-utils": "^1.1.0",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"object-assign": "^4.1.1",
"source-map-support": "^0.4.15"
},
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/colors": "^1.1.3",
"@types/lodash": "^4.14.63",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.14",
"@types/shelljs": "^0.7.1",
"@types/sinon": "^2.1.3",
"@types/webpack": "^2.2.15",
"bluebird": "^3.5.0",
"chai": "^3.5.0",
"empty-module": "0.0.2",
"fs-extra": "^3.0.0",
"mocha": "^3.3.0",
"ps-node": "^0.1.6",
"rimraf": "^2.6.1",
"shelljs": "^0.7.7",
"standard-version": "^4.0.0",
"temp": "^0.8.3",
"tslint": "^5.1.0",
"typescript": "^2.3.0",
"webpack": "^2.4.1"
}
}