-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.4 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
{
"name": "ava-fixture-docker-db",
"version": "0.0.0-semantic-release",
"description": "acquire a fresh docker database container attached to your ava test context",
"main": "src/fixture.js",
"repository": "git@github.com:cdaringe/ava-fixture-docker-db.git",
"author": "cdaringe <christopher.dieringer@gmail.com>",
"license": "MIT",
"devDependencies": {
"ava": "3.7.1",
"husky": "4.2.5",
"lint-staged": "10.1.7",
"prettier-standard": "16.3.0",
"semantic-release": "17.0.7",
"typescript": "3.2.2"
},
"dependencies": {
"dockerode": "^3.0.0",
"execa": "^1.0.0",
"freeport": "^1",
"lodash": "^4",
"@types/dockerode": "^2",
"@types/execa": "^0",
"@types/freeport": "^1",
"@types/lodash": "^4"
},
"peerDependencies": {
"ava": "*"
},
"scripts": {
"format": "prettier-standard '{src,test,scripts}/**/*.{js,jsx,ts,tsx}'",
"test": "ava 'src/**/*.test.js'",
"build": "tsc",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"{src,test,scripts}/**/*.{js,jsx,ts,tsx}": [
"yarn format",
"git add"
]
}
},
"ava": {
"babel": false,
"compileEnhancements": false
},
"keywords": [
"ava",
"docker",
"test",
"context",
"database",
"postgres",
"node",
"typescript"
]
}