-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathpackage.json
102 lines (102 loc) · 2.91 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "firebase-mock",
"version": "2.2.10",
"description": "Firebase mock library for writing unit tests",
"main": "./src",
"scripts": {
"test": "gulp lint && gulp test",
"publish-patch": "git checkout master && git pull && gulp release && npm publish",
"publish-minor": "git checkout master && git pull && gulp release --type minor && npm publish",
"publish-major": "git checkout master && git pull && gulp release --type major && npm publish"
},
"repository": {
"type": "git",
"url": "git://github.com/soumak77/firebase-mock.git"
},
"keywords": [
"firebase",
"mock"
],
"author": "Brian Soumakian",
"license": "MIT",
"bugs": {
"url": "https://github.com/soumak77/firebase-mock/issues"
},
"files": [
"src/",
"browser/"
],
"homepage": "https://github.com/soumak77/firebase-mock",
"dependencies": {
"firebase-auto-ids": "~1.1.0",
"lodash.assign": "^4.2.0",
"lodash.assignin": "^4.2.0",
"lodash.bind": "^4.2.1",
"lodash.clone": "^4.5.0",
"lodash.clonedeep": "^4.5.0",
"lodash.clonedeepwith": "^4.5.0",
"lodash.compact": "^3.0.1",
"lodash.difference": "^4.5.0",
"lodash.every": "^4.6.0",
"lodash.filter": "^4.6.0",
"lodash.find": "^4.6.0",
"lodash.findindex": "^4.6.0",
"lodash.foreach": "^4.5.0",
"lodash.forin": "^4.4.0",
"lodash.get": "^4.4.2",
"lodash.has": "^4.5.2",
"lodash.includes": "^4.3.0",
"lodash.indexof": "^4.0.5",
"lodash.isempty": "^4.4.0",
"lodash.isequal": "^4.5.0",
"lodash.isfunction": "^3.0.9",
"lodash.isnumber": "^3.0.3",
"lodash.isobject": "^3.0.2",
"lodash.isstring": "^4.0.1",
"lodash.isundefined": "^3.0.1",
"lodash.keys": "^4.2.0",
"lodash.map": "^4.6.0",
"lodash.merge": "^4.6.1",
"lodash.noop": "^3.0.1",
"lodash.orderby": "^4.6.0",
"lodash.reduce": "^4.6.0",
"lodash.remove": "^4.7.0",
"lodash.set": "^4.3.2",
"lodash.size": "^4.2.0",
"lodash.toarray": "^4.4.0",
"rsvp": "^3.6.2"
},
"devDependencies": {
"browserify": "^16.2.0",
"browserify-shim": "^3.8.14",
"chai": "~3.5.0",
"chai-as-promised": "^6.0.0",
"es5-shim": "^4.5.10",
"gulp": "^3.8.10",
"gulp-bump": "^3.1.1",
"gulp-footer": "^1.1.2",
"gulp-header": "^1.8.12",
"gulp-istanbul": "^1.1.3",
"gulp-jshint": "^2.1.0",
"gulp-load-plugins": "^1.5.0",
"gulp-mocha": "^2.0.0",
"gulp-rename": "^1.2.2",
"gulp-shell": "^0.6.5",
"jshint": "^2.9.5",
"jshint-stylish": "^2.2.1",
"karma": "^2.0.2",
"karma-browserify": "^5.2.0",
"karma-chai": "^0.1.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon": "^1.0.5",
"mocha": "^5.1.1",
"phantomjs-prebuilt": "^2.1.16",
"semver": "^5.5.0",
"sinon": "^4.5.0",
"sinon-chai": "~2.14.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^1.1.2",
"yargs": "^11.1.0"
}
}