-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.76 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@windyroad/quick-mysql-js",
"version": "1.0.1",
"description": "Utility methods for quickly starting up containers. Useful for when you're testing code that depends on databases, kafka, elasticsearch or similar.",
"main": "lib/index.js",
"files": [
"/lib"
],
"scripts": {
"lint:js": "eslint src/**/*.js",
"lint:js:fix": "npm run lint:js --silent -- --fix",
"lint:json": "prettier '**/*.{json,css,md}'",
"lint:json:fix": "npm run lint:json --silent -- --write",
"lint:watch": "onchange \"src/**/*.js\" -- onerror \"npm run lint --silent\"",
"npm-check": "npm-check --skip-unused",
"npm-check:interactive": "npm-check --skip-unused -u ",
"npm-check-unused": "npm-check",
"test:import": "node testbuild/test-import.js",
"test:require": "node test/test-require.js",
"test": "npm-run-all -s test:*",
"build": "babel src -d lib --source-maps && babel test -d testbuild --source-maps",
"pretest:import": "npm run build",
"pretest:require": "npm run build",
"do-publish": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/windyroad/quick-mysql-js.git"
},
"keywords": [
"javascript",
"container",
"test",
"docker"
],
"author": "Tom Howard <tom@windyroad.com.au>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/windyroad/quick-mysql-js/issues"
},
"homepage": "https://github.com/windyroad/quick-mysql-js#readme",
"peerDependencies": {
"dockerode": "^2.5.8"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"babel-eslint": "^10.0.2",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"cli-error-notifier": "^2.1.0",
"cucumber": "^5.1.0",
"dockerode": "^2.5.8",
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^3.0.2",
"imagemin-lint-staged": "^0.4.0",
"lint-staged": "^9.2.1",
"lodash": ">=4.17.13",
"mysql": "^2.17.1",
"npm-run-all": "^4.1.5",
"onchange": "^6.0.0",
"prettier": "^1.18.2",
"wait-port": "^0.2.2"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
],
"*.{png,jpeg,jpg,gif,svg}": [
"imagemin-lint-staged",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@windyroad/wait-on-mysql": "^1.0.0",
"@windyroad/quick-containers-js": "^2.0.0"
}
}