forked from tj/node-migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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
{
"name": "migrate",
"version": "1.7.0",
"description": "Abstract migration framework for node",
"keywords": [
"migrate",
"migrations"
],
"author": "TJ Holowaychuk <[email protected]>",
"repository": "git://github.com/visionmedia/node-migrate",
"bin": {
"migrate": "./bin/migrate",
"migrate-init": "./bin/migrate-init",
"migrate-list": "./bin/migrate-list",
"migrate-create": "./bin/migrate-create",
"migrate-up": "./bin/migrate-up",
"migrate-down": "./bin/migrate-down"
},
"devDependencies": {
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"standard": "^12.0.1"
},
"main": "index",
"engines": {
"node": ">= 0.4.x"
},
"types": "index.d.ts",
"scripts": {
"test": "standard && standard ./bin/* && mocha",
"prepublishOnly": "npm t",
"postpublish": "git push && git push --tags"
},
"license": "MIT",
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.19.0",
"dateformat": "^3.0.3",
"dotenv": "^6.1.0",
"inherits": "^2.0.3",
"minimatch": "^3.0.4",
"mkdirp": "^0.5.1",
"slug": "^0.9.2"
}
}