forked from florinn/typemoq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.46 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.46 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "typemoq",
"version": "0.3.3",
"description": "A simple mocking library for TypeScript",
"author": "Florin Nitoi <florin.nitoi@gmail.com>",
"license": "MIT",
"main": "typemoq.js",
"typings": "typemoq.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:florinn/typemoq.git"
},
"bugs": "https://github.com/florinn/typemoq/issues",
"keywords": [
"mock",
"stub",
"fake",
"spy",
"library",
"sandbox",
"typescript",
"javascript"
],
"dependencies": {
"@types/lodash": "^4.14.37",
"@types/node": "^6.0.45",
"lodash": "^4.16.4"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.32",
"chai": "^3.5.0",
"del": "^0.1.3",
"dts-bundle": "^0.6.1",
"gulp": "^3.6.0",
"gulp-concat": "^2.4.3",
"gulp-load-plugins": "^0.5.0",
"gulp-rename": "^1.2.0",
"gulp-replace": "^0.5.4",
"gulp-rollup": "^2.5.1",
"gulp-size": "^0.3.0",
"gulp-sourcemaps": "^2.2.0",
"gulp-spawn-mocha": "^3.1.0",
"gulp-typescript": "^3.1.1",
"gulp-uglify": "^0.2.1",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.1.7",
"karma-firefox-launcher": "^0.1.4",
"karma-ie-launcher": "^0.1.5",
"karma-mocha": "^0.1.9",
"karma-sauce-launcher": "^0.2.10",
"merge2": "^1.0.2",
"mocha": "^3.1.2",
"run-sequence": "^1.0.2",
"typescript": "^2.0.3"
},
"engines": {
"node": "^6.0.45"
}
}