-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.55 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
{
"name": "sequential-migrate",
"version": "1.1.2",
"description": "Run scripts sequentially, and store a record of the scripts run",
"repository": {
"type": "git",
"url": "https://github.com/Ivo-Evans/sequential-migrate.git"
},
"homepage": "https://ivo-evans.github.io/sequential-migrate/index.html",
"bin": {
"sequential-migrate": "build/entrypoints/commands/index.js"
},
"main": "build/entrypoints/exports/index.js",
"module": "build/entrypoints/exports/index.js",
"keywords": [
"migration",
"migrations",
"database",
"database-migrations",
"migrate"
],
"types": "./build/entrypoints/exports/index.d.ts",
"scripts": {
"dev": "npm run build && npm link && chmod +x build/entrypoints/commands/index.js",
"cli": "npm run dev && sequential-migrate ",
"build": "rimraf ./build && tsc",
"postbuild": "copyfiles -u 1 src/scaffold/* src/scaffold/**/**/* src/scaffold/**/* build",
"docs": "rimraf docs && typedoc src/types/index.ts --excludeInternal --defaultCategory miscellaneous --categorizeByGroup false",
"test": "jest --watch"
},
"author": "Ivo Evans",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"copyfiles": "^2.4.1",
"dotenv": "^10.0.0",
"eslint": "^8.6.0",
"jest": "^27.4.7",
"pg": "^8.7.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"typedoc": "^0.22.10",
"typescript": "^4.5.4"
}
}