-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "tslib-webpack-starter",
"version": "0.1.0",
"description": "A boilerplate project for typescript + webpack + tslint + babel",
"main": "lib/index.js",
"scripts": {
"build": "webpack",
"test": "karma start"
},
"repository": {
"type": "git",
"url": "httpshttps://github.com/itajaja/tslib-webpack-starter"
},
"keywords": [
"typescript",
"webpack",
"tslint",
"boilerplate",
"starter"
],
"author": "Giacomo Tagliabue",
"license": "MIT",
"devDependencies": {
"babel": "^6.1.18",
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-2": "^6.1.18",
"chai": "^3.4.1",
"karma": "^0.13.15",
"karma-chrome-launcher": "^0.2.1",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^1.1.2",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.4",
"ts-loader": "^0.7.2",
"tslint": "^3.0.0",
"tslint-loader": "^2.1.0",
"typescript": "^1.6.2",
"webpack": "^1.12.9"
}
}