Skip to content

Commit

Permalink
Sort package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
kristiandupont committed Oct 6, 2020
1 parent f214aaa commit 61fcf61
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions package.json
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",
Expand All @@ -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
}
Expand Down

0 comments on commit 61fcf61

Please sign in to comment.