forked from florinn/typemoq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.78 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "typemoq",
"version": "2.0.1",
"description": "A simple mocking library for TypeScript",
"author": "Florin Nitoi <[email protected]>",
"license": "MIT",
"main": "dist/typemoq.js",
"typings": "dist/typemoq.d.ts",
"files": [
"dist",
"src",
"test",
"gulpfile.js",
"karma.conf.js"
],
"repository": {
"type": "git",
"url": "[email protected]:florinn/typemoq.git"
},
"bugs": "https://github.com/florinn/typemoq/issues",
"keywords": [
"mock",
"stub",
"fake",
"spy",
"TDD",
"testing",
"library",
"sandbox",
"typescript"
],
"scripts": {
"build": "gulp build",
"postinstall": "postinstall-build dist"
},
"dependencies": {
"circular-json": "^0.3.1",
"lodash": "^4.16.4",
"postinstall-build": "^5.0.1"
},
"devDependencies": {
"@types/chai": "3.4.34",
"@types/circular-json": "^0.1.30",
"@types/lodash": "^4.14.37",
"@types/mocha": "2.2.32",
"@types/node": "^6.0.45",
"chai": "3.5.0",
"del": "0.1.3",
"dts-bundle": "0.7.2",
"gulp": "^3.9.1",
"gulp-concat": "2.4.3",
"gulp-conventional-changelog": "1.1.0",
"gulp-load-plugins": "0.5.0",
"gulp-rename": "1.2.0",
"gulp-replace": "0.5.4",
"gulp-rollup": "^2.14.0",
"gulp-size": "0.3.0",
"gulp-sourcemaps": "^2.6.0",
"gulp-spawn-mocha": "3.1.0",
"gulp-typescript": "^3.1.7",
"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": "1.0.0",
"karma-mocha": "0.1.9",
"karma-sauce-launcher": "1.1.0",
"merge2": "1.0.2",
"mocha": "3.1.2",
"run-sequence": "1.0.2",
"typescript": "^2.5.2"
},
"engines": {
"node": ">=6.0.0"
}
}