forked from dwmkerr/app-icon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 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
{
"name": "app-icon",
"version": "0.6.2",
"description": "Automatic icon resizing for Mobile Apps. Supports Native, Cordova and React Native. Inspired by cordova-icon.",
"main": "index.js",
"bin": {
"app-icon": "./bin/app-icon.js"
},
"scripts": {
"start": "./bin/app-icon.js",
"test": "mocha -t 10000 './src/**/*.specs.js'",
"test:debug": "mocha -d --debug-brk -w --inspect './src/**/*.specs.js'",
"cov": "nyc --reporter text --reporter html --reporter lcov --report-dir './artifacts/coverage' -x './src/**/*.specs.js' mocha --timeout 10000 './src/**/*.specs.js'",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwmkerr/app-icon.git"
},
"keywords": [
"cordvoa",
"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": "^3.5.0",
"eslint": "^3.17.1",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.0.2",
"nyc": "^11.0.1"
},
"dependencies": {
"chalk": "^1.1.3",
"command-exists": "^1.0.2",
"commander": "^2.9.0",
"mkdirp": "^0.5.1"
}
}