nativefier/package.json

45 lines
1007 B
JSON
Raw Normal View History

2015-03-23 02:51:19 +00:00
{
2015-07-05 06:46:06 +00:00
"name": "nativefier",
2016-01-19 03:49:50 +00:00
"version": "6.2.0",
"description": "Wrap web apps natively",
2016-01-18 14:07:22 +00:00
"main": "lib/buildApp.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src -d lib",
2016-01-18 15:36:05 +00:00
"watch": "babel --watch src -d lib",
"prepublish": "npm run build"
2015-03-23 02:51:19 +00:00
},
2016-01-18 14:07:22 +00:00
"bin": {
"nativefier": "lib/cli.js"
},
2015-03-23 02:51:19 +00:00
"repository": {
"type": "git",
"url": "git+https://github.com/jiahaog/nativefier.git"
2015-03-23 02:51:19 +00:00
},
"author": "",
"license": "MIT",
2015-03-23 02:51:19 +00:00
"bugs": {
"url": "https://github.com/jiahaog/nativefier/issues"
2015-03-23 02:51:19 +00:00
},
"homepage": "https://github.com/jiahaog/nativefier#readme",
2015-03-23 02:51:19 +00:00
"dependencies": {
"async": "^1.5.2",
"cheerio": "^0.19.0",
"commander": "^2.9.0",
"electron-packager": "^5.2.1",
2015-03-23 02:51:19 +00:00
"ncp": "^2.0.0",
"request": "^2.67.0",
2016-01-18 15:56:59 +00:00
"tmp": "0.0.28",
"validator": "^4.5.0"
2015-04-05 04:19:53 +00:00
},
"babel": {
"presets": [
"es2015"
2015-06-28 01:07:42 +00:00
]
2015-07-05 07:24:36 +00:00
},
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-preset-es2015": "^6.3.13"
}
2015-03-23 02:51:19 +00:00
}