-
Notifications
You must be signed in to change notification settings - Fork 224
/
package.json
45 lines (45 loc) · 1.08 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": "2.1.0",
"description": "Abstract migration framework for node",
"keywords": [
"migrate",
"migrations"
],
"author": "TJ Holowaychuk <[email protected]>",
"repository": "git://github.com/tj/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": "^10.2.0",
"rimraf": "^5.0.1",
"standard": "^17.0.0"
},
"main": "index",
"engines": {
"node": ">= 14.0.0"
},
"types": "index.d.ts",
"scripts": {
"test": "standard && standard ./bin/* && mocha",
"prepublishOnly": "npm t",
"postpublish": "git push && git push --tags"
},
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^2.20.3",
"dateformat": "^4.6.3",
"dotenv": "^16.0.0",
"inherits": "^2.0.3",
"minimatch": "^9.0.1",
"mkdirp": "^3.0.1",
"slug": "^8.2.2"
}
}