-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.28 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
{
"name": "image-checker",
"version": "1.5.0",
"description": "Provides image optimisation information within the browser.",
"repository": {
"type": "git",
"url": "git+https://github.com/nccgroup/image-checker.git"
},
"authors": [
"Simon Hearne <simon@hearne.me>",
"Diana Sacuiu <pixelized_peanut@icloud.com>",
"Ian Highet <Ian.Highet@nccgroup.trust>",
"Liviu Taban <tabanliviu@yahoo.com>"
],
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"bugs": {
"url": "https://github.com/nccgroup/image-checker/issues"
},
"homepage": "https://github.com/nccgroup/image-checker#readme",
"engines": {
"node": ">=6.10.2"
},
"dependencies": {
"recursive-readdir": "2.1.1",
"yazl": "2.4.2"
},
"devDependencies": {
"eslint": "3.19.0",
"eslint-config-airbnb-base": "11.1.3",
"eslint-plugin-import": "2.2.0",
"jasmine-core": "2.6.1",
"karma": "1.6.0",
"karma-chrome-launcher": "2.1.0",
"karma-coverage": "1.1.1",
"karma-jasmine": "1.1.0"
},
"scripts": {
"test": "karma start && npm run lint",
"lint": "eslint app/ test/ scripts/",
"lint:fix": "npm run lint -- --fix",
"dist": "node scripts/dist.js"
}
}