forked from florinn/typemoq
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 1.92 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
78
79
{
"name": "typemoq-continued",
"version": "2.1.2",
"description": "A simple mocking library for TypeScript. This is a community fork created in florinn's absence",
"author": "Florin Nitoi <[email protected]>",
"license": "MIT",
"main": "dist/typemoq-continued.js",
"typings": "dist/typemoq-continued.d.ts",
"files": [
"dist",
"build",
"src",
"test",
"gulpfile.js",
"karma.conf.js"
],
"repository": {
"type": "git",
"url": "[email protected]:typemoq/typemoq-continued.git"
},
"bugs": "https://github.com/typemoq/typemoq-continued/issues",
"keywords": [
"mock",
"stub",
"fake",
"spy",
"TDD",
"testing",
"library",
"sandbox",
"typescript"
],
"scripts": {
"build": "gulp build",
"postinstall": "node build/postinstall.js",
"nvm": "nvm use 8.17.0"
},
"dependencies": {
"circular-json": "^0.3.1",
"lodash": "^4.17.5"
},
"devDependencies": {
"@types/chai": "3.4.34",
"@types/circular-json": "^0.1.30",
"@types/lodash": "^4.14.107",
"@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-edge-launcher": "0.4.2",
"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.8.3"
},
"engines": {
"node": ">=6.0.0"
}
}