UNPKG

1.53 kBJSONView Raw
1{
2 "name": "foxhound",
3 "version": "1.0.39",
4 "description": "A Database Query generation library.",
5 "main": "source/FoxHound.js",
6 "scripts": {
7 "start": "node source/FoxHound.js",
8 "coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -u tdd -R spec",
9 "test": "./node_modules/.bin/mocha -u tdd -R spec",
10 "docker-dev-build-image": "docker build ./ -t retold/foxhound:local",
11 "docker-dev-run": "docker run -it -d --name foxhound-dev -p 127.0.0.1:12346:8080 -v \"$PWD/.config:/home/coder/.config\" -v \"$PWD:/home/coder/foxhound\" -u \"$(id -u):$(id -g)\" -e \"DOCKER_USER=$USER\" retold/foxhound:local"
12 },
13 "mocha": {
14 "diff": true,
15 "extension": [
16 "js"
17 ],
18 "package": "./package.json",
19 "reporter": "spec",
20 "slow": "75",
21 "timeout": "5000",
22 "ui": "tdd",
23 "watch-files": [
24 "source/**/*.js",
25 "test/**/*.js"
26 ],
27 "watch-ignore": [
28 "lib/vendor"
29 ]
30 },
31 "repository": {
32 "type": "git",
33 "url": "https://github.com/stevenvelozo/foxhound.git"
34 },
35 "keywords": [
36 "orm",
37 "dal",
38 "query"
39 ],
40 "author": "Steven Velozo <steven@velozo.com> (http://velozo.com/)",
41 "license": "MIT",
42 "bugs": {
43 "url": "https://github.com/stevenvelozo/foxhound/issues"
44 },
45 "homepage": "https://github.com/stevenvelozo/foxhound",
46 "devDependencies": {
47 "chai": "4.3.6",
48 "istanbul": "0.4.1",
49 "mocha": "9.2.2"
50 },
51 "dependencies": {
52 "fable": "~2.0.5",
53 "underscore": "1.13.2"
54 }
55}