-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 1.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
{
"name": "splicon",
"version": "0.0.15",
"description": "Generate cordova/splash files from a single svg, and update config.xml",
"homepage": "https://github.com/isleofcode/splicon",
"main": "src/icon-task.js",
"scripts": {
"test": "./node_modules/.bin/mocha 'node-tests/**/*-test.js'",
"compile": "./node_modules/babel-cli/bin/babel.js --presets babel-preset-es2015 --browserify -d dist/ src/",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "https://github.com/isleofcode/splicon.git"
},
"bin": {
"splicon-icons": "bin/splicon-icons.js",
"splicon-splashes": "bin/splicon-splashes.js"
},
"keywords": [
"cordova",
"phonegap",
"splash",
"icon"
],
"author": {
"name": "Alex Blom",
"email": "[email protected]",
"url": "https://isleofcode.com"
},
"contributors": [
{
"name": "Chris Thoburn",
"email": "[email protected]",
"url": "https://isleofcode.com"
},
{
"name": "Jordan Yee",
"email": "[email protected]",
"url": "https://isleofcode.com"
}
],
"license": "MIT",
"dependencies": {
"chalk": "^0.4.0",
"lodash": "^4.13.1",
"phantomjs-prebuilt": "^2.1.12",
"pn": "^1.0.0",
"rsvp": "^3.2.1",
"xml2js": "^0.4.16"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babelify": "^7.3.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"image-size": "0.3.5",
"mocha": "^2.5.3",
"testdouble": "^1.4.3"
}
}