This repository has been archived by the owner on Nov 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
101 lines (101 loc) · 3.77 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "qix-graphql",
"version": "0.0.1",
"description": "GraphQL Server on top of the Qlik Associative Engine (a.k.a. QIX Engine).",
"main": "./src/index.js",
"scripts": {
"docs": "docker run --rm -v ${PWD}:/opt/verb stefanwalther/verb",
"docs:watch": "nodemon --config ./nodemon-docs.json --exec 'npm run' docs",
"lint": "npm run lint:src",
"lint:fix": "npm run lint:src:fix",
"lint:src": "eslint src",
"lint:src:fix": "eslint src --fix",
"d-build": "docker build -t stefanwalther/qix-graphql .",
"d-run": "docker run -it stefanwalther/qix-graphql /bin/bash",
"dc-up": "docker-compose --f=./docker-compose.yml up --build",
"dc-up:deps": "docker-compose --f=./docker-compose.deps.yml up --build",
"dc-down:deps": "docker-compose --f=./docker-compose.deps.yml down",
"dc-down": "docker-compose --f=./docker-compose.yml down",
"dc-up:dev": "docker-compose --f=./docker-compose.dev.yml up --build && npm run start:watch",
"dc-down:dev": "docker-compose --f=./docker-compose.dev.yml down",
"start": "node ./src/index.js",
"start:watch": "cross-env QIX_HOST=localhost nodemon -L --watch ./src --exec npm run start",
"start:watch:debug": "nodemon -L --watch ./src --exec node --inspect ./src/index.js",
"test": "cross-env QIX_HOST=localhost nyc --reporter=lcov mocha './test/**/*.spec.js' --require './test/mocha.conf.js' --timeout 6000 && npm run coverage",
"test:ci": "cross-env QIX_HOST=qix nyc --reporter=lcov mocha './test/**/*.spec.js' --require './test/mocha.conf.js' --timeout 6000 && npm run coverage",
"test:watch": "cross-env QIX_HOST=localhost nyc --reporter=lcov mocha './test/**/*.spec.js' --require './test/mocha.conf.js' --reporter=min --timeout 6000 --watch",
"test:integration": "cross-env QIX_HOST=localhost nyc --reporter=lcov mocha './test/integration/**/*.spec.js' --require './test/mocha.conf.js' --timeout 6000",
"test:integration:watch": "cross-env QIX_HOST=localhost npm run test:unit && nyc --reporter=lcov mocha './test/integration/**/*.spec.js' --require './test/mocha.conf.js' --reporter=min --timeout 6000 --watch",
"test:unit": "nyc --reporter=lcov mocha './test/unit/**/*.spec.js' --require './test/mocha.conf.js'",
"coverage": "nyc report",
"precommit": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stefanwalther/qix-graphql.git"
},
"keywords": [
"graphql",
"qix",
"enigma.js",
"qlik"
],
"author": "Stefan Walther <[email protected]> (http://qliksite.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/stefanwalther/qix-graphql/issues"
},
"engines": {
"node": ">=8.10.0"
},
"homepage": "https://github.com/stefanwalther/qix-graphql#readme",
"dependencies": {
"body-parser": "^1.18.2",
"compression": "^1.7.2",
"cross-env": "^5.1.5",
"enigma.js": "^2.2.1",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"express-initializers": "0.0.1",
"express-result": "^0.1.4",
"graphql": "^0.13.0",
"helmet": "^3.12.0",
"js-yaml": "^3.11.0",
"lodash": "^4.17.10",
"read-pkg-up": "^3.0.0",
"superagent-graphql": "^0.1.2",
"swagger-ui-express": "^2.0.8",
"winster": "^0.2.11",
"ws": "^3.3.3"
},
"devDependencies": {
"chai": "4.1.2",
"chai-subset": "1.6.0",
"eslint": "4.19.1",
"eslint-config-space-single": "0.3.5",
"http-status-codes": "1.3.0",
"husky": "0.14.3",
"mocha": "3.5.3",
"nodemon": "1.18.4",
"nyc": "11.9.0",
"supertest": "3.1.0"
},
"verb": {
"run": true,
"toc": true,
"layout": "empty",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": []
},
"lint": {
"reflinks": true
},
"reflinks": []
}
}