proton-native/package.json
2019-05-07 21:54:39 -04:00

51 lines
1.4 KiB
JSON

{
"name": "proton-native",
"version": "2.0.0",
"description": "React Native for the desktop, cross compatible",
"main": "bin/index.js",
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
]
},
"scripts": {
"test": "babel-node test.js",
"prettier": "prettier --single-quote --trailing-comma es5 --write 'src/**/*.js' 'examples/*.js' './**/*.md' Demo.js",
"build": "babel src -d bin",
"pub": "babel src -d bin && npm publish",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kusti8/proton-native.git"
},
"author": "Gustav Hansen <kusti8@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kusti8/proton-native/issues"
},
"homepage": "https://github.com/kusti8/proton-native#readme",
"dependencies": {
"fbjs": "^1.0.0",
"node-qt-napi": "github:kusti8/node-qt-napi",
"react": "^16.8.6",
"react-reconciler": "^0.20.4",
"yoga-layout": "^1.9.3"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-stage-0": "^7.0.0",
"husky": "^0.14.3",
"lint-staged": "^7.1.0",
"prettier": "^1.12.1",
"react-devtools": "^3.4.3"
},
"files": [
"bin"
]
}