-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 942 Bytes
/
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
{
"name": "daltons",
"version": "0.0.1",
"author": "Nicolas Hoizey <[email protected]>",
"description": "A tool helping the choice of optimal responsive image sizes",
"license": "MIT",
"repository": {
"url": "https://github.com/cleverage/daltons/"
},
"bugs": {
"url": "https://github.com/cleverage/daltons/issues"
},
"engines": {
"node": ">=8"
},
"main": "./src/index.js",
"bin": {
"daltons": "./src/cli.js"
},
"scripts": {
"test": "npm run test:lint && npm run test:examples",
"test:lint": "npx eslint .",
"test:examples": "jest"
},
"dependencies": {
"ansi-colors": "^4.1.1",
"cli-table": "^0.3.11",
"csv-parse": "^4.16.0",
"puppeteer": "^13.7.0",
"yargs": "^17.4.1"
},
"devDependencies": {
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.0.3",
"prettier": "^2.6.2"
}
}