mirror of
https://github.com/kusti8/proton-native.git
synced 2026-05-15 14:15:50 -06:00
71 lines
2.4 KiB
JSON
71 lines
2.4 KiB
JSON
{
|
|
"name": "proton-native",
|
|
"version": "1.1.11",
|
|
"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": {
|
|
"demo": "babel-node Demo.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",
|
|
"test": "jest"
|
|
},
|
|
"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://proton-native.js.org",
|
|
"dependencies": {
|
|
"color": "^3.0.0",
|
|
"fbjs": "^0.8.16",
|
|
"libui-node": "^0.2.1",
|
|
"prop-types": "^15.6.1",
|
|
"react": "^16.8.2",
|
|
"react-reconciler": "^0.20.0",
|
|
"svg-path-parser": "^1.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.0.0",
|
|
"@babel/core": "^7.0.0",
|
|
"@babel/node": "^7.0.0",
|
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
|
"@babel/plugin-proposal-decorators": "^7.0.0",
|
|
"@babel/plugin-proposal-do-expressions": "^7.0.0",
|
|
"@babel/plugin-proposal-export-default-from": "^7.0.0",
|
|
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
|
|
"@babel/plugin-proposal-function-bind": "^7.0.0",
|
|
"@babel/plugin-proposal-function-sent": "^7.0.0",
|
|
"@babel/plugin-proposal-json-strings": "^7.0.0",
|
|
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
|
|
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
|
|
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
|
|
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
|
|
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
|
|
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
|
|
"@babel/plugin-syntax-import-meta": "^7.0.0",
|
|
"@babel/preset-env": "^7.0.0",
|
|
"@babel/preset-react": "^7.0.0",
|
|
"babel-core": "^7.0.0-bridge.0",
|
|
"babel-jest": "^23.4.2",
|
|
"husky": "^0.14.3",
|
|
"jest": "^24.1.0",
|
|
"lint-staged": "^7.1.0",
|
|
"prettier": "^1.12.1",
|
|
"react-devtools": "^3.4.3"
|
|
},
|
|
"files": ["bin"]
|
|
}
|