UNPKG

1.82 kBJSONView Raw
1{
2 "name": "foxhound",
3 "version": "2.0.1",
4 "description": "A Database Query generation library.",
5 "main": "source/FoxHound.js",
6 "scripts": {
7 "start": "node source/FoxHound.js",
8 "coverage": "./node_modules/.bin/nyc --reporter=lcov --reporter=text-lcov ./node_modules/mocha/bin/_mocha -- -u tdd -R spec",
9 "test": "./node_modules/.bin/mocha -u tdd -R spec",
10 "build": "./node_modules/.bin/gulp build",
11 "docker-dev-build-image": "docker build ./ -f Dockerfile_LUXURYCode -t retold/foxhound:local",
12 "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"
13 },
14 "mocha": {
15 "diff": true,
16 "extension": [
17 "js"
18 ],
19 "package": "./package.json",
20 "reporter": "spec",
21 "slow": "75",
22 "timeout": "5000",
23 "ui": "tdd",
24 "watch-files": [
25 "source/**/*.js",
26 "test/**/*.js"
27 ],
28 "watch-ignore": [
29 "lib/vendor"
30 ]
31 },
32 "repository": {
33 "type": "git",
34 "url": "https://github.com/stevenvelozo/foxhound.git"
35 },
36 "keywords": [
37 "orm",
38 "dal",
39 "query"
40 ],
41 "author": "Steven Velozo <steven@velozo.com> (http://velozo.com/)",
42 "license": "MIT",
43 "bugs": {
44 "url": "https://github.com/stevenvelozo/foxhound/issues"
45 },
46 "homepage": "https://github.com/stevenvelozo/foxhound",
47 "devDependencies": {
48 "browserify": "^17.0.0",
49 "chai": "4.3.7",
50 "gulp": "^4.0.2",
51 "gulp-babel": "^8.0.0",
52 "gulp-sourcemaps": "^3.0.0",
53 "gulp-terser": "^2.1.0",
54 "gulp-util": "^3.0.8",
55 "mocha": "10.2.0",
56 "nyc": "^15.1.0",
57 "vinyl-buffer": "^1.0.1",
58 "vinyl-source-stream": "^2.0.0"
59 },
60 "dependencies": {
61 "fable": "^3.0.4"
62 }
63}