forked from thitemple/TypescriptMochaWebpackDemo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 766 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
{
"name": "TypescriptMochaWebpackDemo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "typings install --overwrite --save",
"test": "karma start"
},
"author": "",
"license": "ISC",
"devDependencies": {
"chai": "^3.5.0",
"karma": "^0.13.19",
"karma-chai": "^0.1.0",
"karma-mocha": "^0.2.1",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sinon": "^1.0.4",
"karma-typescript-preprocessor2": "^1.1.1",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"phantomjs-prebuilt": "^2.1.3",
"sinon": "^1.17.3",
"ts-loader": "^0.8.0",
"typescript": "^1.8.0",
"typings": "^1.4.0",
"webpack": "^1.12.12"
},
"dependencies": {
"jquery": "^2.2.0"
}
}