-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
74 lines (74 loc) · 1.68 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
{
"name": "app-icon",
"version": "0.13.2",
"description": "Automatic icon resizing for Mobile Apps. Supports Native, Cordova and React Native. Inspired by cordova-icon.",
"main": "./src/index.js",
"engines": {
"node": ">=10"
},
"bin": {
"app-icon": "./bin/app-icon.js"
},
"scripts": {
"start": "./bin/app-icon.js",
"test": "mocha --timeout 20000 ./src/{,**/}*.specs.js",
"test:debug": "mocha -d -w ./src/{,**/}*.specs.js",
"cov": "nyc mocha --timeout 20000 ./src/{,**/}*.specs.js",
"lint": "eslint .",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwmkerr/app-icon.git"
},
"keywords": [
"android",
"ios",
"cordova",
"react-native",
"icon",
"cordova-icon",
"resize"
],
"author": "Dave Kerr",
"license": "MIT",
"bugs": {
"url": "https://github.com/dwmkerr/app-icon/issues"
},
"homepage": "https://github.com/dwmkerr/app-icon#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^9.1.0",
"mocha": "^7.1.1",
"nyc": "^14.0.0",
"standard-version": "^9.0.0"
},
"dependencies": {
"chalk": "^2.3.0",
"commander": "^3.0.0",
"debug": "^4.1.1",
"imagemagick-cli": "^0.5.0",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.0"
},
"nyc": {
"all": true,
"include": [
"src/**/*.js"
],
"exclude": [
"src/testing/*",
"src/**/*.specs.js"
],
"reporter": [
"text",
"html",
"lcov"
],
"cache": true,
"report-dir": "./artifacts/coverage"
}
}