-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 1.71 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
{
"name": "tiny-fixtures",
"version": "0.3.0",
"description": "Simple database fixtures",
"homepage": "https://www.tiny-fixtures.com",
"repository": {
"type": "git",
"url": "https://github.com/antman261/tiny-fixtures"
},
"main": "lib/index",
"types": "lib/index",
"files": [
"lib",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"test": "npx mocha",
"watch": "npx mocha -w",
"build": "npx tsc -p .",
"build-docs": "npx typedoc --out docs src/index.ts --disableOutputCheck",
"commit": "npx cz",
"release": "npm run build && npm run build-docs && git add . && npm run commit && standard-version"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --cache --fix"
]
},
"prettier": {
"singleQuote": true
},
"mocha": {
"extension": [
"ts"
],
"watch-files": [
"src/**/*.ts",
"test/**/*.ts"
],
"require": "ts-node/register"
},
"author": "Anthony Manning-Franklin <[email protected]> (https://antman-does-software.com)",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/pg": "^7.14.11",
"chai": "^4.3.4",
"commitizen": "^4.2.4",
"eslint": "^7.25.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"mocha": "^10.2.0",
"pg": "^8.6.0",
"prettier": "^2.2.1",
"standard-version": "^9.3.0",
"ts-node": "^9.1.1",
"typedoc": "^0.20.36",
"typedoc-plugin-markdown": "^3.8.1",
"typescript": "^4.2.4"
},
"keywords": [
"testing",
"postgres",
"fixtures",
"typescript",
"backend",
"back-end"
],
"dependencies": {
"snake-case": "^3.0.4"
}
}