-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.41 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
{
"name": "rethink-mock",
"version": "0.1.0",
"description": "A mocking library for unit testing rethinkdb with mocha and sinon",
"main": "lib/rethink-mock",
"directories": {
"test": "test"
},
"scripts": {
"test": "eslint gulpfile.js lib/**/*.js test/**/*.js && mocha test/**/*.spec.js",
"patch-release": "npm version patch && npm publish && git push origin master --follow-tags",
"minor-release": "npm version minor && npm publish && git push origin master --follow-tags",
"major-release": "npm version major && npm publish && git push origin master --follow-tags"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/JohanObrink/rethink-mock.git"
},
"keywords": [
"rethinkdb",
"test",
"mock",
"sinon"
],
"author": "Johan Öbrink <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JohanObrink/rethink-mock/issues"
},
"homepage": "https://github.com/JohanObrink/rethink-mock#readme",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.2.2",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.0",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"gulp-mocha": "^3.0.0",
"mocha": "^3.0.2",
"rethinkdb": "^2.3.2",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"sinon": "^1.17.5",
"sinon-as-promised": "^4.0.2"
}
}