home / packages / non_npm_packages

non_npm_packages: scottbot95/RoR2ModManager, package.json

This data as json

commit contents organization path repository
0a277e967fbc0029c37e54a3dc2880f592965da9
{
    "author": {
        "email": "scotttechau@gmail.com",
        "name": "Scott Techau"
    },
    "bugs": {
        "url": "https://github.com/scottbot95/RoR2ModManager/issues/new"
    },
    "dependencies": {
        "about-window": "^1.12.1",
        "electron-log": "^3.0.5",
        "electron-store": "^3.2.0",
        "electron-updater": "^4.0.6",
        "fs-extra": "^7.0.1",
        "glob": "^7.1.3",
        "unzipper": "^0.9.11",
        "winreg": "^1.2.4"
    },
    "description": "A simple mod manager built using electron. Currently only supports BepInEx mods",
    "devDependencies": {
        "@angular-devkit/build-angular": "^0.13.9",
        "@angular/animations": "^7.2.7",
        "@angular/cdk": "^7.3.7",
        "@angular/cli": "7.3.3",
        "@angular/common": "^7.2.7",
        "@angular/compiler": "^7.2.7",
        "@angular/compiler-cli": "^7.2.7",
        "@angular/core": "^7.2.7",
        "@angular/flex-layout": "^7.0.0-beta.24",
        "@angular/forms": "^7.2.7",
        "@angular/language-service": "^7.2.7",
        "@angular/material": "^7.3.7",
        "@angular/platform-browser": "^7.2.7",
        "@angular/platform-browser-dynamic": "^7.2.7",
        "@angular/router": "^7.2.7",
        "@biesbjerg/ngx-translate-extract": "^2.3.4",
        "@ngx-translate/core": "11.0.1",
        "@ngx-translate/http-loader": "4.0.0",
        "@nicky-lenaers/ngx-scroll-to": "^2.0.0",
        "@types/fs-extra": "^5.0.5",
        "@types/glob": "^7.1.1",
        "@types/inflection": "^1.5.28",
        "@types/jasmine": "2.8.7",
        "@types/jasminewd2": "2.0.3",
        "@types/mocha": "^5.2.6",
        "@types/mousetrap": "^1.6.2",
        "@types/node": "^10.14.2",
        "@types/semver": "^6.0.0",
        "@types/unzipper": "^0.9.2",
        "@types/winreg": "^1.2.30",
        "chai": "^4.2.0",
        "codecov": "^3.3.0",
        "codelyzer": "4.5.0",
        "conventional-changelog-cli": "2.0.11",
        "core-js": "2.6.1",
        "dexie": "^2.0.4",
        "electron": "5.0.0",
        "electron-builder": "^20.39.0",
        "electron-reload": "1.3.0",
        "hammerjs": "^2.0.8",
        "inflection": "^1.12.0",
        "jasmine-core": "3.3.0",
        "jasmine-spec-reporter": "4.2.1",
        "karma": "^4.1.0",
        "karma-chrome-launcher": "2.2.0",
        "karma-coverage-istanbul-reporter": "2.0.4",
        "karma-jasmine": "2.0.1",
        "karma-jasmine-html-reporter": "1.4.0",
        "material-design-icons": "^3.0.1",
        "mocha": "^6.1.4",
        "mousetrap": "^1.6.3",
        "ngx-markdown": "^7.1.5",
        "node-sass": "4.12.0",
        "npm-run-all": "4.1.5",
        "rxjs": "6.4.0",
        "semver": "^6.0.0",
        "spectron": "5.0.0",
        "toml": "^3.0.0",
        "ts-node": "7.0.1",
        "tslint": "5.11.0",
        "typescript": "3.2.4",
        "uuid": "^3.3.2",
        "wait-on": "3.2.0",
        "webdriver-manager": "12.1.0",
        "zone.js": "0.8.29"
    },
    "homepage": "https://github.com/scottbot95/RoR2ModManager",
    "keywords": [
        "angular",
        "angular 7",
        "electron",
        "typescript",
        "sass"
    ],
    "main": "main.js",
    "name": "ror2-mod-manager",
    "private": true,
    "protocols": [
        "ror2mm"
    ],
    "repository": {
        "url": "https://github.com/scottbot95/RoR2ModManager"
    },
    "scripts": {
        "build": "npm-run-all postinstall:electron electron:serve-tsc && ng build",
        "build:ci": "npm-run-all postinstall:electron electron:serve-tsc && ng build --progress=false",
        "build:dev": "npm-run-all \"build -c dev\"",
        "build:prod": "npm-run-all \"build -c production\"",
        "clean": "npx rimraf release dist",
        "dist": "npm-run-all lint test e2e electron:dist",
        "dist:ci": "npm-run-all electron:dist",
        "e2e": "npm-run-all build:prod e2e:run",
        "e2e:ci": "npm-run-all \"build:prod --progress=false\" e2e:run",
        "e2e:run": "mocha --timeout 300000 --require ts-node/register e2e/**/*.spec.ts",
        "electron:dist": "npm-run-all electron:windows",
        "electron:linux": "npm-run-all build:prod && electron-builder build --linux",
        "electron:local": "npm-run-all build:prod && electron .",
        "electron:mac": "npm-run-all build:prod && electron-builder build --mac",
        "electron:serve": "wait-on http-get://localhost:4200/ main.js && electron . --serve",
        "electron:serve-tsc": "tsc -p tsconfig-serve.json",
        "electron:windows": "npm-run-all build:prod && electron-builder build --windows",
        "extract-i18n": "ngx-translate-extract --input ./src --output ./src/assets/i18n/*.json --clean --sort --format namespaced-json --marker _",
        "lint": "ng lint",
        "ng": "ng",
        "ng:serve": "ng serve",
        "ng:serve:web": "npm-run-all postinstall:web && ng serve -c web -o",
        "postinstall": "npm-run-all postinstall:electron && electron-builder install-app-deps",
        "postinstall:electron": "node postinstall",
        "postinstall:web": "node postinstall-web",
        "start": "npm-run-all postinstall:electron -p ng:serve electron:serve \"electron:serve-tsc -w\"",
        "test": "npm-run-all postinstall:web && ng test --browsers ChromeHeadless",
        "test:ci": "npm-run-all postinstall:web && ng test --progress=false --code-coverage --browsers ChromeHeadlessNoSandbox",
        "test:dev": "npm-run-all postinstall:web && ng test --watch --browsers Chrome",
        "test:dev:coverage": "npm-run-all postinstall:web && ng test --watch --code-coverage --browsers Chrome",
        "version": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
    },
    "version": "1.0.3"
}
scottbot95 package.json scottbot95/RoR2ModManager
Powered by Datasette · Queries took 0.824ms