-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
36 lines (36 loc) · 946 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
35
36
{
"name": "TypescriptMochaWebpackDemo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "typings install --overwrite --save",
"test": "karma start karma.unit.js",
"coverage": "karma start karma.coverage.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"awesome-typescript-loader": "^3.1.2",
"chai": "^3.5.0",
"istanbul-instrumenter-loader": "^2.0.0",
"karma": "^1.5.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon": "^1.0.5",
"karma-typescript-preprocessor2": "^1.2.1",
"karma-webpack": "^2.0.3",
"mocha": "^3.2.0",
"phantomjs-prebuilt": "^2.1.14",
"sinon": "^2.1.0",
"ts-loader": "^2.0.2",
"typescript": "^2.2.1",
"typings": "^2.1.0",
"webpack": "^2.3.0"
},
"dependencies": {
"jquery": "^3.2.1"
}
}