-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.83 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
{
"name": "@notores/template",
"version": "0.1.0",
"description": "Base Notores Template",
"main": "app.js",
"scripts": {
"start": "node index.js",
"dev": "NODE_ENV=development nodemon --ignore './public' index.js",
"test": "NODE_ENV=test jest",
"lint": "eslint ./app"
},
"repository": {
"type": "git",
"url": "git+https://github.com/notores/template"
},
"authors": [
"Renzo Roso <renzo@geex.company>",
"Kevin Sijbers <kevin@aurop.net"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/notores/template/issues"
},
"homepage": "https://github.com/notores/template#readme",
"dependencies": {
"@notores/core": "notores/core",
"@notores/theme": "notores/theme",
"@webcomponents/webcomponentsjs": "^2.2.10",
"client-sessions": "^0.8.0",
"lodash-es": "^4.17.11",
"mongoose": "^5.5.8",
"redux": "^4.0.1"
},
"notores": {
"modules": [
"@notores/theme",
{
"name": "notores-demo",
"absolutePath": ":root/app/notores-demo"
},
{
"name": "static-serve-modules",
"absolutePath": ":root/app/static-serve-modules"
}
]
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.0.1",
"eslint": "^5.14.1",
"jest": "^24.1.0"
},
"jest": {
"automock": false,
"testEnvironment": "node",
"moduleDirectories": [
"node_modules"
],
"testPathIgnorePatterns": [
"node_modules",
".idea",
"public"
],
"collectCoverage": true,
"collectCoverageFrom": [
"app/**/*.js",
"lib/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 5,
"lines": 40,
"functions": 25,
"statements": -1000
}
},
"setupFilesAfterEnv": [
"./setupJest.js"
],
"coverageDirectory": "coverage"
}
}