1
0
mirror of https://github.com/jiahaog/Nativefier synced 2024-06-27 07:45:03 +02:00
Nativefier/package.json
2016-01-18 22:07:22 +08:00

41 lines
893 B
JSON

{
"name": "nativefier",
"version": "6.0.0",
"description": "Wrap web apps natively",
"main": "lib/buildApp.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src -d lib",
"watch": "babel --watch src -d lib"
},
"bin": {
"nativefier": "lib/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jiahaog/nativefier.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/jiahaog/nativefier/issues"
},
"homepage": "https://github.com/jiahaog/nativefier#readme",
"dependencies": {
"async": "^1.5.2",
"commander": "^2.9.0",
"electron-packager": "^5.2.1",
"ncp": "^2.0.0",
"tmp": "0.0.28"
},
"babel": {
"presets": [
"es2015"
]
},
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-preset-es2015": "^6.3.13"
}
}