@neosjs/electron-native
Version:
electron-native
76 lines (75 loc) • 2.04 kB
JSON
{
"name": "@neosjs/electron-native",
"version": "1.1.2",
"description": "electron-native",
"main": "lib/index.js",
"scripts": {
"bootstrap": "yarn || npm i",
"build": "npm run bootstrap && npm run clean && babel src/ --out-dir lib/",
"lint": "eslint src/** --fix",
"prettier": "prettier --write \"**/*.js\"",
"clean": "rimraf lib/* && rimraf *.log",
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"release": "npm run build && sh ./release.sh"
},
"keywords": [
"NeosJS",
"ipc",
"electron",
"process",
"native"
],
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"author": "听着情歌流泪 <develop@lingtal.com> (http://electron-native.neosjs.com)",
"homepage": "http://electron-native.neosjs.com",
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-transform-arrow-functions": "^7.10.4",
"@babel/plugin-transform-classes": "^7.10.4",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/preset-env": "^7.9.6",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"babel-eslint": "^10.1.0",
"babel-plugin-minify-infinity": "^0.4.3",
"babel-preset-minify": "^0.5.1",
"cz-customizable": "^6.2.0",
"del": "^5.1.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"husky": "^4.3.0",
"lint-staged": "^10.2.2",
"prettier": "^2.1.1",
"rimraf": "^3.0.2"
},
"license": "MIT",
"engines": {
"node": ">= 8.0.0",
"npm": ">= 5.0.0"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"yarn lint --fix",
"yarn prettier"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"publishConfig": {
"access": "public"
}
}