-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.52 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": "knex-scripts",
"version": "0.3.6",
"description": "Knex utilities to interact with Postgres database.",
"main": "lib/index.js",
"author": "Greg Bergé <[email protected]>",
"license": "MIT",
"scripts": {
"build": "babel -d lib src",
"lint": "eslint .",
"prebuild": "rm -rf lib",
"format": "prettier --write \"**/*.{js,md,mdx}\"",
"test": "npm run lint && npm run build && jest --ci && bin/knex-scripts create && bin/knex-scripts dump && bin/knex-scripts load && bin/knex-scripts drop && bin/knex-scripts check-structure",
"release": "npm run build && standard-version && conventional-github-releaser -p angular"
},
"bin": {
"knex-scripts": "bin/knex-scripts"
},
"dependencies": {
"chalk": "^3.0.0",
"commander": "^5.0.0",
"interpret": "^2.0.0",
"liftoff": "^3.1.0",
"minimist": "^1.2.5",
"mkdirp": "^1.0.3",
"mz": "^2.7.0",
"tildify": "^2.0.0",
"tiny-glob": "^0.2.6",
"v8flags": "^3.1.3"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.2.3",
"conventional-github-releaser": "^3.1.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"jest": "^25.2.3",
"knex": "^0.20.13",
"pg": "^7.18.2",
"prettier": "^2.0.2",
"standard-version": "^7.1.0"
}
}