-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
96 lines (96 loc) · 2.15 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
{
"name": "Cometa",
"version": "1.3.1",
"description": "Super fast, on-demand and on-the-fly, image processing server.",
"main": "app/index.js",
"engines": {
"node": ">=8.15.0"
},
"repository": {
"type": "git",
"url": "[email protected]:CometaFront/Cometa.git"
},
"contributors": [],
"maintainers": [],
"author": {
"name": "Stefan Aichholzer",
"email": "[email protected]",
"url": "https://github.com/aichholzer"
},
"license": "MIT",
"homepage": "https://github.com/CometaFront/Cometa",
"dependencies": {
"aws-sdk": "^2.1152.0",
"rayo": "^1.3.10",
"sharp": "^0.30.6"
},
"devDependencies": {
"codecov": "^3.6.5",
"coveralls": "^3.0.9",
"dotenv": "^16.0.1",
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.2",
"npm-check": "^5.9.2",
"nyc": "^15.0.0",
"prettier": "^2.6.2",
"should": "^13.2.3",
"sinon": "^14.0.0"
},
"directories": {
"test": "test"
},
"bugs": {
"url": "https://github.com/CometaFront/Cometa/issues"
},
"scripts": {
"eslint:fix": "eslint --quiet --fix .",
"pretest": "eslint --quiet .",
"test": "nyc _mocha -R spec --timeout 1000 ./test/unit/index.js",
"unit": "_mocha -R spec --timeout 1000 ./test/unit/index.js",
"report": "codecov && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage ./.nyc_output",
"start": "node app/index.js",
"start:local": "nodemon -r dotenv/config --inspect",
"update": "npm-check -u"
},
"nodemonConfig": {
"ignore": [
"test/*"
],
"delay": 100
},
"nyc": {
"check-coverage": true,
"cache": true,
"branches": 100,
"lines": 100,
"statements": 100,
"functions": 100,
"reporter": [
"lcov",
"text"
],
"watermarks": {
"lines": [
100,
100
],
"functions": [
100,
100
],
"branches": [
100,
100
],
"statements": [
100,
100
]
}
}
}