-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 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
{
"name": "rethink-migrate",
"version": "1.3.1",
"description": "A migration tool for rethink db",
"main": "lib/migrate",
"scripts": {
"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",
"test": "gulp jshint test"
},
"keywords": [
"rethinkdb",
"migrations"
],
"author": "Johan Öbrink <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JohanObrink/rethink-migrate"
},
"bugs": {
"url": "https://github.com/JohanObrink/rethink-migrate/issues",
"email": "[email protected]"
},
"bin": "./bin/rethink-migrate",
"dependencies": {
"chalk": "^1.1.3",
"lodash": "^3.10.1",
"meow": "^3.7.0",
"moment": "^2.13.0",
"nconf": "^0.8.4",
"promise": "^7.1.1",
"ts-fs-promise": "^1.0.4"
},
"devDependencies": {
"chai": "^3.5.0",
"gulp": "^3.9.1",
"gulp-jshint": "^1.12.0",
"gulp-mocha": "^2.2.0",
"jshint-stylish": "^2.1.0",
"mocha": "^2.4.5",
"promise-mock": "^1.0.0",
"proxyquire": "^1.7.4",
"rethinkdb": "^2.3.0",
"rethinkdbdash": "^2.3.3",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0"
}
}