-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
51 lines (51 loc) · 1.87 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
{
"name": "ormnomnom",
"version": "7.3.0",
"description": "a lightweight orm to silence the orm-y beast",
"main": "lib/ormnomnom.js",
"scripts": {
"update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'",
"update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'",
"prerelease": "npm run update-contrib && npm run update-coc",
"pretest": "PGUSER=${PGUSER:-postgres} dropdb -h localhost onn_test >/dev/null 2>&1 || echo; PGUSER=${PGUSER:-postgres} createdb -h localhost onn_test; PGUSER=${PGUSER:-postgres} psql -h localhost onn_test -f test/fixture.sql",
"test": "PGUSER=${PGUSER:-postgres} TZ=UTC tap test/*-test.js",
"posttest": "npm run lint",
"pretest-cov": "npm run pretest",
"lint": "standard",
"test-cov": "TZ=UTC tap --cov test/*-test.js",
"posttest-cov": "npm run posttest",
"test-cov-html": "TZ=UTC tap --coverage-report=html test/*-test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/chrisdickinson/ormnomnom.git"
},
"keywords": [
"orm"
],
"author": "Chris Dickinson <[email protected]> (http://neversaw.us/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/chrisdickinson/ormnomnom/issues"
},
"homepage": "https://github.com/chrisdickinson/ormnomnom#readme",
"dependencies": {
"@hapi/iron": "^6.0.0",
"@iterables/chain": "^1.0.1",
"@iterables/map": "^1.0.1",
"@iterables/reduce": "^1.0.1",
"@iterables/zip": "^1.0.2",
"ajv": "^6.10.2",
"lodash.clonedeep": "^4.5.0",
"pg-query-stream": "^4.0.0",
"quotemeta": "0.0.0"
},
"devDependencies": {
"fluent-schema": "^1.1.0",
"pg": "^8.5.1",
"standard": "^16.0.4",
"tap": "^16.0.0",
"weallbehave": "^1.0.3",
"weallcontribute": "^1.0.8"
}
}