-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.29 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@adnelson/requery",
"version": "0.50.2",
"description": "ReasonML SQL query builder and database interaction library (DB-agnostic)",
"repository": "https://github.com/adnelson/requery",
"author": "Allen Nelson <ithinkican@gmail.com>",
"license": "MIT",
"lint-staged": {
"*.{md,scss,css,js,json}": [
"prettier --write"
],
"*.{re,rei}": [
"bsrefmt --in-place -w 100"
]
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"printWidth": 100,
"singleQuote": true
},
"peerDependencies": {
"@glennsl/bs-json": ">=5",
"bs-platform": "^5 || ^7"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.4.9",
"@glennsl/bs-json": "^5.0.2",
"bs-platform": "7.3.1",
"lint-staged": "^10.2.11",
"onchange": "^6.1.0",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"build": "sh -c 'NINJA_ANSI_FORCED=1 bsb -make-world'",
"clean": "bsb -clean-world",
"cleanbuild": "yarn clean && yarn build",
"watch": "yarn clean && onchange -k -i -d 500 '**/*.{re,rei}' bsconfig.json -- sh -c 'yarn build'",
"watch:run": "onchange -k -i -d 500 '**/*.{re,rei}' bsconfig.json -- sh -c 'yarn build && yarn testquery'",
"test": "jest __tests__ __tests__/postgres",
"test:generic": "jest __tests__",
"test:pg": "jest __tests__/postgres",
"format": "bsrefmt --in-place --print-width 100 src/*.{re,rei} __tests__/*.re example/*.re",
"re:clean": "bsb -clean-world",
"re:build": "bsb -make-world",
"re:watch": "bsb -make-world -w",
"re:formatall": "find src __tests__ -name '*.re' | xargs npx bsrefmt --in-place",
"re:formatchanged": "git diff --name-only --diff-filter=d HEAD -- '*.re' | xargs -I{} realpath --relative-to=. $(git rev-parse --show-toplevel)/'{}' | while read f; do npx bsrefmt --print-width 100 --in-place \"$f\"; done",
"prepare": "mkdir -p ./.git/hooks && cp ./hooks/* ./.git/hooks"
},
"gitHead": "070a1c35478946515074fe0286b47121b4bbfac7",
"publishConfig": {
"access": "public"
},
"dependencies": {
"bs-postgres": "^0.2.0",
"re-opaque": "^1.1.0",
"reason-jest": "^2.2.0"
},
"resolutions": {
"dot-prop": ">=5.1.1",
"minimist": ">=0.2.1",
"acorn": ">=6.4.1",
"kind-of": ">=6.0.3"
}
}