-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f214aaa
commit 61fcf61
Showing
1 changed file
with
27 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,49 @@ | ||
{ | ||
"name": "schemalint", | ||
"version": "0.5.1", | ||
"keywords": [ | ||
"postgresql", | ||
"schema", | ||
"lint" | ||
], | ||
"repository": "[email protected]:kristiandupont/schemalint.git", | ||
"license": "MIT", | ||
"author": { | ||
"name": "Kristian Dupont", | ||
"url": "http://www.kristiandupont.com" | ||
}, | ||
"version": "0.5.1", | ||
"repository": "[email protected]:kristiandupont/schemalint.git", | ||
"license": "MIT", | ||
"main": "build/engine.js", | ||
"types": "build/engine.d.ts", | ||
"bin": { | ||
"schemalint": "./bin/schemalint" | ||
}, | ||
"files": [ | ||
"build/", | ||
"bin/" | ||
], | ||
"scripts": { | ||
"build": "tsc", | ||
"version": "yarn build", | ||
"start-example-db": "docker run -d --name dvd-rental -p 54321:5432 kristiandupont/dvdrental-image", | ||
"run-example": "node build/src/cli -c ./example/.schemalintrc", | ||
"stop-example-db": "docker stop dvd-rental" | ||
"start-example-db": "docker run -d --name dvd-rental -p 54321:5432 kristiandupont/dvdrental-image", | ||
"stop-example-db": "docker stop dvd-rental", | ||
"version": "yarn build" | ||
}, | ||
"prettier": { | ||
"singleQuote": true, | ||
"trailingComma": "es5" | ||
}, | ||
"jest": { | ||
"moduleFileExtensions": [ | ||
"js", | ||
"ts" | ||
], | ||
"testEnvironment": "node", | ||
"testMatch": [ | ||
"<rootDir>/src/**/*.test.js" | ||
], | ||
"transform": { | ||
"^.+\\.(ts|js)$": "ts-jest" | ||
} | ||
}, | ||
"dependencies": { | ||
"@kristiandupont/recase": "^1.1.1", | ||
|
@@ -47,27 +68,6 @@ | |
"ts-jest": "^26.3.0", | ||
"typescript": "^4.0.2" | ||
}, | ||
"files": [ | ||
"build/", | ||
"bin/" | ||
], | ||
"jest": { | ||
"moduleFileExtensions": [ | ||
"js", | ||
"ts" | ||
], | ||
"transform": { | ||
"^.+\\.(ts|js)$": "ts-jest" | ||
}, | ||
"testMatch": [ | ||
"<rootDir>/src/**/*.test.js" | ||
], | ||
"testEnvironment": "node" | ||
}, | ||
"prettier": { | ||
"singleQuote": true, | ||
"trailingComma": "es5" | ||
}, | ||
"np": { | ||
"tests": false | ||
} | ||
|