-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.12 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.12 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@forfuture/migrate",
"version": "0.2.4",
"description": "Database-agnostic Migration framework",
"homepage": "https://gitlab.com/forfuture/migrate",
"license": "MIT",
"author": {
"name": "forfuture",
"email": "we@forfuture.co.ke",
"url": "https://forfuture.tech"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/forfuture/migrate.git"
},
"bugs": {
"url": "https://gitlab.com/forfuture/migrate/issues"
},
"keywords": [
"migration",
"database"
],
"main": "dist/lib/index",
"bin": {
"migrate": "bin/migrate"
},
"scripts": {
"build": "npm run build:src && npm run build:test",
"build:src": "tsc --project src",
"build:test": "tsc --project test",
"clean:dist": "rimraf dist",
"clean:dist-test": "rimraf dist-test",
"format": "prettier --write \"{src,test}/**/*.{json,ts}\" \"*.json\"",
"test": "npm run test:lint && npm run test:unit",
"test:format": "prettier --check \"{src,test}/**/*.{json,ts}\" \"*.json\"",
"test:lint": "tslint src/**/*.ts test/**/*.ts",
"test:unit": "ava dist-test/unit/**/test.*.js",
"prebuild:src": "npm run clean:dist",
"prebuild:test": "npm run clean:dist-test",
"precommit": "lint-staged",
"pretest:unit": "npm run build"
},
"dependencies": {
"commander": "^6.2.1",
"debug": "^4.3.4",
"save-dev": "0.0.1-security",
"semver": "^7.3.7"
},
"peerDependencies": {
"sequelize": "5.x.x"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/node": "^14.14.31",
"@types/semver": "^7.3.10",
"@types/sequelize": "^4.28.13",
"ava": "^4.3.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.0",
"sequelize": "^5.22.5",
"tslint": "^5.20.0",
"typescript": "^4.7.4"
},
"prettier": {
"arrowParens": "always",
"endOfLine": "lf",
"tabWidth": 4,
"trailingComma": "all"
}
}