mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-11-13 16:46:26 +00:00
9b52f210db
We don't need a fancy _"portable (Windows/Linux/macOS) implementation of Unix shell commands on top of the Node.js API"_, we just want to run a simple script. Replacing with using stdlib `child_process.spawnSync`.
100 lines
3.0 KiB
JSON
100 lines
3.0 KiB
JSON
{
|
|
"name": "nativefier",
|
|
"version": "42.2.1",
|
|
"description": "Wrap web apps natively",
|
|
"license": "MIT",
|
|
"author": "Goh Jia Hao",
|
|
"engines": {
|
|
"node": ">= 10.0.0",
|
|
"npm": ">= 6.0.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",
|
|
"dev-up": "npm install && cd ./app && npm install && cd ..",
|
|
"dev-up-win": "npm install & cd app & npm install & cd ..",
|
|
"changelog": "./docs/generate-changelog",
|
|
"ci": "npm run lint && npm test",
|
|
"clean": "rimraf lib/ app/lib/ app/dist/",
|
|
"clean:full": "rimraf lib/ app/lib/ app/dist/ node_modules/ app/node_modules/",
|
|
"lint:fix": "eslint . --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 && ./docs/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",
|
|
"commander": "^4.1.1",
|
|
"electron-packager": "^15.2.0",
|
|
"gitcloud": "^0.1.3",
|
|
"hasbin": "^1.2.3",
|
|
"loglevel": "^1.7.1",
|
|
"ncp": "^2.0.0",
|
|
"page-icon": "^0.3.4",
|
|
"sanitize-filename": "^1.6.3",
|
|
"source-map-support": "^0.5.19",
|
|
"tmp": "^0.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.20",
|
|
"@types/ncp": "^2.0.4",
|
|
"@types/node": "^10.17.54",
|
|
"@types/page-icon": "^0.3.3",
|
|
"@types/tmp": "^0.2.0",
|
|
"@typescript-eslint/eslint-plugin": "^4.15.2",
|
|
"@typescript-eslint/parser": "^4.15.2",
|
|
"eslint": "^7.20.0",
|
|
"eslint-config-prettier": "^7.2.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.2",
|
|
"webpack": "^5.24.2",
|
|
"webpack-cli": "^4.5.0"
|
|
},
|
|
"jest": {
|
|
"collectCoverage": true,
|
|
"setupFiles": [
|
|
"./lib/jestSetupFiles"
|
|
],
|
|
"testEnvironment": "node",
|
|
"testPathIgnorePatterns": [
|
|
"/node_modules/",
|
|
"<rootDir>/app/src.*",
|
|
"<rootDir>/src.*"
|
|
]
|
|
}
|
|
}
|