-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 981 Bytes
/
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
{
"name": "ts-karma-webpack-test",
"version": "1.0.0",
"description": "Simple test repo for a karma-webpack + Typescript setting",
"main": "dist/index.js",
"scripts": {
"test": "karma start",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matthieu-foucault/ts-karma-webpack-test.git"
},
"author": "Matthieu Foucault",
"license": "MIT",
"bugs": {
"url": "https://github.com/matthieu-foucault/ts-karma-webpack-test/issues"
},
"homepage": "https://github.com/matthieu-foucault/ts-karma-webpack-test#readme",
"devDependencies": {
"@types/mocha": "^5.2.5",
"awesome-typescript-loader": "^5.2.1",
"karma": "^3.1.3",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"mocha": "^5.2.0",
"typescript": "^3.2.2",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"karma-webpack": "github:daKmoR/karma-webpack#feat/sharedBundles"
}
}