-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.67 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
{
"name": "iate-showcase",
"version": "1.0.0",
"description": "Showcasing IATE features - repleceable translators and adapters + testability",
"main": "index.js",
"scripts": {
"start": "node index.js",
"lint": "lynt src/**/*.js",
"test": "npm run lint; nyc --reporter=text --reporter=html mocha src/**/test/*.js",
"watch-test": "npm test; chokidar src/**/*.js src/**/test/*.js -i 'coverage' -c 'npm test' --silent",
"init_db": "node db/init.js"
},
"dependencies": {
"ajv": "6.11.0",
"apollo-errors": "^1.9.0",
"body-parser": "1.19.0",
"cors": "2.8.5",
"csv-parse": "4.8.5",
"dotenv": "8.2.0",
"express": "4.17.1",
"express-graphql": "^0.9.0",
"gists": "2.0.0",
"graphql": "^14.6.0",
"graphql-tools": "^4.0.7",
"iate-components": "0.5.0",
"jsonwebtoken": "^8.5.1",
"lodash": "4.17.15",
"moment": "2.24.0",
"mongodb": "3.5.5"
},
"devDependencies": {
"chokidar-cli": "2.1.0",
"expect.js": "0.3.1",
"lynt": "0.5.5",
"mocha": "7.0.1",
"nyc": "15.0.0",
"sinon": "8.1.1"
},
"engines": {
"node": "10"
},
"nyc": {
"exclude": [
"**/test/*.js",
"src/components"
],
"check-coverage": true,
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100
},
"repository": {
"type": "git",
"url": "git+https://github.com/afmeirelles/iate-showcase.git"
},
"keywords": [
"iate"
],
"author": "André Meirelles - https://github.com/afmeirelles",
"license": "MIT",
"bugs": {
"url": "https://github.com/afmeirelles/iate-showcase/issues"
},
"homepage": "https://github.com/afmeirelles/iate-showcase#readme"
}