-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.04 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
{
"name": "parse-mock",
"version": "1.1.4",
"description": "Parsejs unit testing library",
"main": "src/parse-mock.js",
"engines": {
"node": "0.10.x"
},
"scripts": {},
"repository": {
"type": "git",
"url": "https://github.com/dziamid/parse-mock.git"
},
"keywords": [
"parse",
"parsesdk",
"mock",
"stub",
"unit-testing"
],
"author": "Dashbouquet team <contact@dashbouquet.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dziamid/parse-mock/issues"
},
"homepage": "https://github.com/dziamid/parse-mock",
"dependencies": {},
"devDependencies": {
"browserify": "^9.0.3",
"browserify-shim": "^3.8.3",
"gulp": "^3.8.11",
"gulp-concat": "^2.5.2",
"gulp-uglify": "^1.1.0",
"lodash": "^3.5.0",
"parse": "^1.3.5",
"sinon": "^1.14.1",
"vinyl-source-stream": "^1.1.0"
},
"browserify-shim": {
"lodash": "global:_",
"sinon": "global:sinon",
"parse": "global:Parse"
},
"browserify": {
"transform": [
"browserify-shim"
]
}
}