-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
125 lines (125 loc) · 3.54 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@dadi/cdn",
"version": "4.0.0",
"product": "DADI CDN",
"description": "A high performance, just-in-time asset manipulation and delivery layer designed as a modern content distribution solution.",
"scripts": {
"init": "validate-commit-msg",
"start": "node index.js --node_env=development",
"test": "rm -f config/config.test.json && eslint --ext js,jsx . && prettier --check '**/*.{js,jsx,md,html,css}' && npm run test:run && ./node_modules/.bin/nyc report",
"test:run": "rm -rf cache && env NODE_ENV=test ./node_modules/.bin/nyc --reporter=lcov -x '**/workspace/**' -x 'test/**' ./node_modules/mocha/bin/_mocha test",
"precommit": "node scripts/precommit.js",
"posttest": "./scripts/coverage.js",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"dependencies": {
"@dadi/boot": "^1.1.4",
"@dadi/cache": "^3.0.0",
"@dadi/logger": "latest",
"@dadi/status": "^1.0.4",
"accept-language-parser": "^1.2.0",
"aspect-fit": "^1.0.2",
"aws-sdk": "2.252.x",
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-minify": "0.5.0",
"body-parser": "^1.18.2",
"chokidar": "^2.0.3",
"cloudfront": "~0.4.0",
"color-namer": "^1.1.0",
"colors": "^1.1.2",
"compressible": "^2.0.13",
"concat-stream": "^2.0.0",
"console-stamp": "^0.2.2",
"convict": "^4.0.0",
"cron": "^1.4.0",
"etag": "^1.7.0",
"exif-reader-paras20xx": "^1.1.1",
"farmhash": "2.1.0",
"finalhandler": "~1.1.0",
"fs-extra": "^7.0.1",
"gifwrap": "^0.7.5",
"he": "^1.1.0",
"image-size-stream": "1.1.0",
"imagemin": "^6.0.0",
"imagemin-jpegtran": "^6.0.0",
"jimp": "^0.6.1",
"jsonwebtoken": "^8.2.1",
"length-stream": "~0.1.1",
"maxmind": "^2.2.0",
"mime": "^2.4.0",
"mkdirp": "^0.5.1",
"node-minify": "^3.3.0",
"node-vibrant": "^2.1.2",
"object-path": "^0.11.4",
"range-parser": "^1.2.0",
"range-stream": "^1.1.0",
"request": "~2.88.0",
"request-promise": "^4.1.1",
"router": "~1.3.0",
"sha1": "~1.1.1",
"sharp": "^0.22.0",
"simple-bufferstream": "^1.0.0",
"smartcrop-sharp": "^2.0.2",
"snyk": "^1.232.0",
"sqwish": "^0.2.2",
"stream-length": "^1.0.2",
"streamifier": "^0.1.1",
"ua-parser-js": "^0.7.10",
"uglify-js": "^3.0.25",
"url-join": "^3.0.0",
"useragent": "2.3.0",
"uuid": "latest",
"validate-commit-message": "^3.0.1"
},
"devDependencies": {
"@dadi/eslint-config": "^1.1.0",
"@dadi/prettier-config": "^1.1.0",
"aws-sdk-mock": "^1.5.0",
"coveralls": "^3.0.1",
"env-test": "^1.0.0",
"eslint": "^6.3.0",
"fakeredis": "^2.0.0",
"http-proxy": "^1.16.2",
"husky": "^1.3.1",
"it-each": "^0.3.1",
"lint-staged": "^9.2.5",
"mocha": "^5.2.0",
"nock": "^9.0.2",
"nyc": "^14.0.0",
"prettier": "^1.18.2",
"proxyquire": "~2.0.0",
"redis": "^2.6.3",
"should": "~13.2.0",
"sinon": "^4.0.2",
"superagent": "^5.0.2",
"supertest": "^4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dadi/cdn.git"
},
"bugs": {
"url": "https://github.com/dadi/cdn/issues"
},
"homepage": "https://github.com/dadi/cdn",
"directories": {
"test": "test"
},
"author": "DADI <team@dadi.tech>",
"license": "SEE LICENSE IN GPL.md",
"snyk": true,
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,md,html,css}": [
"prettier --write",
"git add"
]
}
}