-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 1.87 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
{
"ava": {
"babel": {
"presets": []
},
"concurrency": 5,
"failFast": false,
"files": [
"dist/tests/**/*.js"
],
"timeout": "1m"
},
"dependencies": {
"request": "^2.83.0",
"request-promise": "^4.2.2"
},
"description": "Optimize images.",
"devDependencies": {
"@types/debug": "0.0.30",
"@types/node": "8.0.14",
"async-retry": "^1.1.4",
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-es2017": "^6.22.0",
"babel-register": "^6.26.0",
"cpx": "^1.5.0",
"eslint": "^4.16.0",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"eslint-plugin-typescript": "^0.8.1",
"express": "^4.16.2",
"mock-require": "^3.0.1",
"markdownlint-cli": "^0.7.0",
"npm-run-all": "^4.1.2",
"on-headers": "^1.0.1",
"rimraf": "^2.6.2",
"sonarwhal": "^1.1.0",
"typescript": "^2.7.1",
"typescript-eslint-parser": "^12.0.0"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"dist/src",
"npm-shrinkwrap.json"
],
"homepage": "https://sonarwhal.com/",
"keywords": [
"rule",
"sonarwhal"
],
"main": "dist/src/index.js",
"name": "@sonarwhal/rule-optimize-image",
"peerDependencies": {
"sonarwhal": "^1.1.0"
},
"scripts": {
"build": "npm run clean && npm-run-all build:*",
"build:assets": "cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist",
"build-release": "npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true",
"build:ts": "tsc",
"clean": "rimraf dist",
"test": "npm run lint && npm run build && ava",
"lint": "npm-run-all lint:*",
"lint:js": "eslint --ext md --ext ts --ignore-pattern dist .",
"lint:md": "markdownlint README.md",
"watch:ts": "npm run build:ts -- --watch",
"init": "npm install && npm run build"
},
"version": "1.0.1"
}