-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.12 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "webadvisor-api",
"version": "1.0.0-rc1",
"description": "Lightweight and simple GraphQL API for UoG, UW, and WLU.",
"main": "src/server.js",
"scripts": {
"dev": "NODE_ENV=development nodemon -r dotenv/config src/server.js",
"run": "yarn dev",
"prod": "NODE_ENV=production node -r dotenv/config src/server.js",
"test": "jest --watch --color --reporters=\"default\"",
"prettier": "prettier --write \"src/**/*.js\"",
"prettier-check": "prettier --check \"src/**/*.js\"",
"ci-test": "jest --passWithNoTests --coverage --ci",
"qa": "yarn prettier-check && yarn ci-test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EvilKanoa/webadvisor-api.git"
},
"author": "Kanoa Haley",
"license": "MIT",
"bugs": {
"url": "https://github.com/EvilKanoa/webadvisor-api/issues"
},
"engines": {
"node": ">=10",
"yarn": ">=1.2"
},
"homepage": "https://github.com/EvilKanoa/webadvisor-api#readme",
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"quoteProps": "consistent",
"trailingComma": "all",
"arrowParens": "avoid"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageReporters": [
"lcov",
"json-summary",
"text"
],
"reporters": [
"default",
[
"jest-ratchet",
{
"tolerance": 1
}
]
],
"coverageThreshold": {
"global": {
"branches": 69,
"functions": 68,
"lines": 84,
"statements": 84
}
}
},
"dependencies": {
"body-parser": "1.19.0",
"cheerio": "1.0.0-rc.3",
"cors": "2.8.5",
"dotenv": "8.0.0",
"express": "4.17.3",
"express-graphql": "0.9.0",
"graphql": "14.4.2",
"request": "2.88.0",
"request-promise-native": "1.0.7",
"sprintf-js": "^1.1.2",
"x-ray": "^2.3.4"
},
"devDependencies": {
"jest": "24.8.0",
"jest-ratchet": "2.0.3",
"nodemon": "1.19.1",
"prettier": "1.18.2",
"supertest": "4.0.2"
}
}