-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.33 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.33 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
{
"name": "node-pg-migrations",
"version": "0.0.7",
"private": false,
"scripts": {
"lint-staged": "lint-staged",
"lint": "./node_modules/.bin/eslint --ignore-path .gitignore -- lib",
"lint:watch": "node_modules/.bin/esw lib --watch --ignore-path .gitignore --cache --cache-location './tmp/linter' -- lib",
"start": "node-pg-migrations run",
"test": "jest --verbose",
"addMigration": "node-pg-migrations add",
"generate": "node-pg-migrations generate"
},
"bin": {
"node-pg-migrations": "bin/migration.js",
"npg": "bin/migration.js"
},
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"*.js": [
"eslint --fix",
"git add",
"jest --bail --findRelatedTests"
]
},
"repository": {
"type": "git",
"url": "https://github.com/HelloTech/node-pg-migrations.git"
},
"dependencies": {
"path": "^0.12.7",
"pg": "^7.8.0",
"pre-commit": "^1.2.2",
"simple-git": "^1.107.0",
"yargs": "^13.2.2"
},
"devDependencies": {
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"jest": "^24.7.1",
"lint-staged": "^8.1.5"
},
"license": "MIT"
}