mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-11-05 12:57:52 +00:00
cc02b87de7
It contains a weird mix of stuff and hides valuable files from view at the root of the repo. Better to have: - Docs at the root - Rest of the github/release-related hodgepodge (screenshots, scripts) in hidden folder .github
105 lines
3.6 KiB
JSON
105 lines
3.6 KiB
JSON
{
|
|
"name": "nativefier",
|
|
"version": "43.1.3",
|
|
"description": "Wrap web apps natively",
|
|
"license": "MIT",
|
|
"author": "Goh Jia Hao",
|
|
"engines_README": "Bumping the minimum required Node version? You must bump: 1. package.json -> engines.node, 2. package.json -> devDependencies.@types/node , 3. tsconfig.json -> {target, lib} , 4. .github/workflows/ci.yml -> node-version",
|
|
"engines_READMEforEnginesNode": "Here in engines.node, we require a version as old as possible, for Nativefier to be easily installable using the stock Node.js shipped by conservative Linux distros. It's a balancing act between this, and our own dependencies requiring more a recent Node; as much as possible, try to keep supporting Debian stable; https://packages.debian.org/search?suite=stable&keywords=nodejs",
|
|
"engines": {
|
|
"node": ">= 12.9.0",
|
|
"npm": ">= 6.9.0"
|
|
},
|
|
"keywords": [
|
|
"desktop",
|
|
"electron",
|
|
"app",
|
|
"native",
|
|
"wrapper"
|
|
],
|
|
"main": "lib/main.js",
|
|
"typings": "lib/main.d.ts",
|
|
"bin": {
|
|
"nativefier": "lib/cli.js"
|
|
},
|
|
"homepage": "https://github.com/nativefier/nativefier",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/nativefier/nativefier.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/nativefier/nativefier/issues"
|
|
},
|
|
"scripts": {
|
|
"build-app": "cd app && webpack",
|
|
"build-app-static": "ncp app/src/static/ app/lib/static/ && ncp app/dist/preload.js app/lib/preload.js && ncp app/dist/preload.js.map app/lib/preload.js.map",
|
|
"build": "npm run clean && tsc --build . app && npm run build-app && npm run build-app-static",
|
|
"build:watch": "tsc --build . app --watch",
|
|
"changelog": "./.github/generate-changelog",
|
|
"ci": "npm run lint && npm test",
|
|
"clean": "rimraf lib/ app/lib/ app/dist/",
|
|
"clean:full": "rimraf lib/ app/lib/ app/dist/ app/node_modules/ node_modules/",
|
|
"lint:fix": "eslint . --ext .ts --fix",
|
|
"lint:format": "prettier --write 'src/**/*.js' 'app/src/**/*.js'",
|
|
"lint": "eslint . --ext .ts",
|
|
"list-outdated-deps": "npm out; cd app && npm out; true",
|
|
"prepare": "cd app && npm install && cd .. && npm run build",
|
|
"test:integration": "jest --testRegex '.*integration-test.js'",
|
|
"test:manual": "npm run build && ./.github/manual-test",
|
|
"test:unit": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:withlog": "LOGLEVEL=trace npm run test",
|
|
"test": "jest --testRegex '[-.]test\\.js$'",
|
|
"watch": "npx concurrently \"npm:*:watch\""
|
|
},
|
|
"dependencies": {
|
|
"axios": "^0.21.1",
|
|
"electron-packager": "^15.2.0",
|
|
"gitcloud": "^0.2.0",
|
|
"hasbin": "^1.2.3",
|
|
"loglevel": "^1.7.1",
|
|
"ncp": "^2.0.0",
|
|
"page-icon": "^0.4.0",
|
|
"sanitize-filename": "^1.6.3",
|
|
"source-map-support": "^0.5.19",
|
|
"tmp": "^0.2.1",
|
|
"yargs": "^17.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.20",
|
|
"@types/ncp": "^2.0.4",
|
|
"@types/node": "^12.12.6",
|
|
"@types/page-icon": "^0.3.3",
|
|
"@types/tmp": "^0.2.0",
|
|
"@typescript-eslint/eslint-plugin": "^4.17.0",
|
|
"@typescript-eslint/parser": "^4.17.0",
|
|
"eslint": "^7.10.0",
|
|
"eslint-config-prettier": "^8.1.0",
|
|
"eslint-plugin-prettier": "^3.3.1",
|
|
"jest": "^26.6.3",
|
|
"prettier": "^2.2.1",
|
|
"rimraf": "^3.0.2",
|
|
"ts-loader": "^8.0.17",
|
|
"typescript": "^4.2.3",
|
|
"webpack": "^5.24.4",
|
|
"webpack-cli": "^4.5.0"
|
|
},
|
|
"jest": {
|
|
"collectCoverage": true,
|
|
"setupFiles": [
|
|
"./lib/jestSetupFiles"
|
|
],
|
|
"testEnvironment": "node",
|
|
"testPathIgnorePatterns": [
|
|
"/node_modules/",
|
|
"<rootDir>/app/src.*",
|
|
"<rootDir>/src.*"
|
|
]
|
|
},
|
|
"prettier": {
|
|
"arrowParens": "always",
|
|
"singleQuote": true,
|
|
"trailingComma": "all"
|
|
}
|
|
}
|