-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
75 lines (75 loc) · 1.78 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
{
"name": "kraken",
"version": "1.0.1",
"author": {
"name": "Kraken.io",
"email": "support@kraken.io"
},
"description": "Plug into the power and speed of Kraken.io Image Optimizer",
"homepage": "https://github.com/kraken-io/kraken-node",
"main": "./src/kraken",
"repository": {
"type": "git",
"url": "https://github.com/kraken-io/kraken-node.git"
},
"keywords": [
"kraken",
"kraken.io",
"image optimizer",
"image optimiser"
],
"license": "MIT",
"engine": {
"node": ">=12.20.0"
},
"dependencies": {
"axios": "^0.24.0",
"form-data": "^4.0.0"
},
"devDependencies": {
"dotenv": "^16.3.1",
"eslint": "^8.2.0",
"jest": "^28.1.3",
"prettier": "^2.4.1"
},
"scripts": {
"test": "node --trace-warnings node_modules/.bin/jest --no-cache",
"buildDocs": "documentation build src/** -f md --github > docs/code/README.md"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "coverage",
"coverageProvider": "v8",
"coverageReporters": [
"json",
"text",
"lcov",
"clover"
]
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"es6": true
}
},
"prettier": {
"printWidth": 80,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"semi": false,
"useTabs": false,
"overrides": [
{
"files": "*.yml",
"options": {
"tabWidth": 2
}
}
]
}
}