-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 757 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 757 Bytes
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
{
"name": "typescript-webpack-tree-shaking",
"version": "1.0.0",
"description": "Tree-shaking example with Typescript and Webpack",
"main": "index.js",
"scripts": {
"webpack": "webpack --config webpack.config.js",
"webpack-prod": "webpack --config webpack.prod.config.js",
"postinstall": "typings install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blacksonic/typescript-webpack-tree-shaking.git"
},
"keywords": ["tree-shaking", "typescript", "webpack"],
"author": {
"name": "blacksonic",
"email": "soos.gabor86@gmail.com"
},
"license": "ISC",
"dependencies": {
"ts-loader": "0.8.2",
"typescript": "^2.0.0-dev",
"typings": "1.3.2",
"webpack": "2.1.0-beta.21"
}
}