2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2024-09-27 20:09:03 +00:00
nativefier/package.json

33 lines
785 B
JSON
Raw Normal View History

2015-03-23 02:51:19 +00:00
{
2015-03-23 02:55:15 +00:00
"name": "atom-shell-packager",
2015-04-05 16:04:27 +00:00
"version": "2.1.1",
2015-03-23 02:53:30 +00:00
"description": "package and distribute your atom-shell app in OS executables (.app, .exe, etc) via JS or CLI",
2015-03-23 02:51:19 +00:00
"main": "index.js",
"bin": {
"atom-shell-packager": "cli.js"
},
"repository": {
"type": "git",
2015-03-23 02:55:15 +00:00
"url": "https://github.com/maxogden/atom-shell-packager.git"
2015-03-23 02:51:19 +00:00
},
"author": "max ogden",
"license": "BSD",
"bugs": {
2015-03-23 02:55:15 +00:00
"url": "https://github.com/maxogden/atom-shell-packager/issues"
2015-03-23 02:51:19 +00:00
},
2015-03-23 02:55:15 +00:00
"homepage": "https://github.com/maxogden/atom-shell-packager",
2015-03-23 02:51:19 +00:00
"dependencies": {
"minimist": "^1.1.1",
"mkdirp": "^0.5.0",
"ncp": "^2.0.0",
"plist": "^1.1.0",
"rimraf": "^2.3.2"
2015-03-23 02:54:01 +00:00
},
2015-04-05 04:19:53 +00:00
"devDependencies": {
"standard": "^3.3.2"
},
2015-03-23 02:54:01 +00:00
"scripts": {
"test": "standard"
2015-03-23 02:51:19 +00:00
}
}