Path: blob/master/web-gui/buildyourownbotnet/assets/js/jquery-terminal/package.json
1293 views
{1"name": "jquery.terminal",2"version": "2.12.0",3"description": "jQuery Terminal Emulator is a plugin for creating command line interpreters in your applications.",4"main": "js/jquery.terminal.js",5"typings": "js/jquery.terminal.d.ts",6"keywords": [7"terminal",8"emulator",9"prompt",10"console",11"keyboard",12"type",13"rpc",14"input",15"ui"16],17"scripts": {18"test": "make test"19},20"author": {21"name": "Jakub Jankiewicz",22"email": "[email protected]",23"url": "https://jcubic.pl/me"24},25"contributors": [26{27"name": "Jakub T. Jankiewicz",28"url": "https://jcubic.pl/me"29},30{31"name": "Zuo Qiyang",32"url": "http://zuoqy.com"33},34{35"name": "Marcel Link",36"url": "https://github.com/ml1nk"37},38{39"name": "Sébastien Warin",40"url": "http://sebastien.warin.fr"41},42{43"name": "Christopher John Ryan",44"url": "https://github.com/ChrisJohnRyan"45},46{47"name": "Johan",48"url": "https://github.com/johanjordaan"49},50{51"name": "Florian Schäfer",52"url": "https://github.com/fschaefer"53},54{55"name": "David Refoua",56"url": "http://www.Refoua.me"57},58{59"name": "Ishan Ratnapala",60"url": "https://github.com/IshanRatnapala"61},62{63"name": "Tomasz Ducin",64"url": "http://ducin.it"65},66{67"name": "7twin",68"url": "https://7twin.com"69},70{71"name": "Abdelrahman Omran",72"url": "https://omranic.com"73},74{75"name": "Anton Vasil'ev",76"url": "https://github.com/avdes"77},78{79"name": "finlob",80"url": "https://github.com/finlob"81},82{83"name": "Hasan",84"url": "https://github.com/JuanPotato"85},86{87"name": "Hraban Luyat",88"url": "https://luyat.com"89},90{91"name": "Jarry Shaw",92"url": "jarryshaw.me"93},94{95"name": "Jon Steinich",96"url": "https://github.com/jsteinich"97},98{99"name": "Martin v. Löwis",100"url": "https://github.com/loewis"101},102{103"name": "Mateusz Paprocki",104"url": "https://github.com/mattpap"105},106{107"name": "exit1",108"url": "https://github.com/exit1"109},110{111"name": "Robert Wikman",112"url": "https://github.com/rbw"113},114{115"name": "Steve Phillips",116"url": "https://tryingtobeawesome.com/"117},118{119"name": "Yutong Luo",120"url": "https://yutongluo.com"121},122{123"name": "coderaiser",124"url": "http://coderaiser.github.io"125},126{127"name": "mrkaiser",128"url": "https://github.com/mrkaiser"129},130{131"name": "stereobooster",132"url": "https://stereobooster.com"133},134{135"name": "Steve Kirkegard",136"url": "https://www.linkedin.com/in/steve-kirkegard"137},138{139"name": "Juraj Vitko",140"url": "https://github.com/youurayy"141}142],143"license": "MIT",144"repository": {145"type": "git",146"url": "https://github.com/jcubic/jquery.terminal.git"147},148"bugs": {149"url": "https://github.com/jcubic/jquery.terminal/issues"150},151"homepage": "https://terminal.jcubic.pl",152"eslintConfig": {153"parserOptions": {154"ecmaVersion": 3,155"sourceType": "script",156"ecmaFeatures": {}157},158"env": {159"browser": true,160"jasmine": true,161"node": true162},163"globals": {164"jQuery": true,165"sprintf": true,166"$": true,167"Symbol": true168},169"rules": {170"no-console": "error",171"eqeqeq": "error",172"curly": "error",173"no-unreachable": "error",174"valid-typeof": "error",175"no-unexpected-multiline": "error",176"no-regex-spaces": "error",177"no-irregular-whitespace": "error",178"no-invalid-regexp": "error",179"no-inner-declarations": "error",180"no-func-assign": "error",181"no-extra-semi": "error",182"no-extra-boolean-cast": "error",183"no-debugger": "error",184"no-dupe-args": "error",185"no-dupe-keys": "error",186"no-duplicate-case": "error",187"no-empty-character-class": "error",188"no-ex-assign": "error",189"array-callback-return": "error",190"no-case-declarations": "error",191"guard-for-in": "error",192"no-caller": "error",193"no-empty-function": "error",194"no-extend-native": "error",195"no-extra-bind": "error",196"no-fallthrough": "error",197"no-global-assign": "error",198"no-implicit-globals": "error",199"no-implied-eval": "error",200"no-multi-spaces": "error",201"no-new-wrappers": "error",202"no-redeclare": "error",203"no-self-assign": "error",204"no-return-assign": "error",205"no-self-compare": "error",206"no-throw-literal": "error",207"no-unused-labels": "error",208"no-useless-call": "error",209"no-useless-escape": "error",210"no-void": "error",211"no-with": "error",212"radix": "error",213"wrap-iife": [214"error",215"inside"216],217"yoda": [218"error",219"never"220],221"no-catch-shadow": "error",222"no-delete-var": "error",223"no-label-var": "error",224"no-undef-init": "error",225"no-unused-vars": "error",226"no-undef": "error",227"comma-style": [228"error",229"last"230],231"comma-dangle": [232"error",233"never"234],235"comma-spacing": [236"error",237{238"before": false,239"after": true240}241],242"computed-property-spacing": [243"error",244"never"245],246"eol-last": [247"error",248"always"249],250"func-call-spacing": [251"error",252"never"253],254"key-spacing": [255"error",256{257"beforeColon": false,258"afterColon": true,259"mode": "strict"260}261],262"max-len": [263"error",26490265],266"max-statements-per-line": "error",267"new-parens": "error",268"no-array-constructor": "error",269"no-lonely-if": "error",270"no-mixed-spaces-and-tabs": "error",271"no-multiple-empty-lines": "error",272"no-new-object": "error",273"no-tabs": "error",274"no-trailing-spaces": "error",275"no-whitespace-before-property": "error",276"object-curly-spacing": [277"error",278"never"279],280"space-before-blocks": "error",281"keyword-spacing": [282"error",283{284"before": true,285"after": true286}287],288"space-in-parens": [289"error",290"never"291],292"space-infix-ops": "error",293"space-before-function-paren": [294"error",295"never"296],297"complexity": [298"error",299{300"max": 30301}302],303"indent": [304"error",3054,306{307"SwitchCase": 1308}309],310"linebreak-style": [311"error",312"unix"313],314"semi": [315"error",316"always"317]318}319},320"dependencies": {321"@types/jquery": "^3.3.29",322"jquery": "~3",323"prismjs": "^1.16.0",324"wcwidth": "^1.0.1"325},326"devDependencies": {327"coveralls": "^3.0.3",328"cssnano": "^4.1.10",329"emoji-datasource-twitter": "^4.1.0",330"eslint": "^5.16.0",331"gm": "^1.23.1",332"iconv-lite": "^0.5.0",333"jest": "^24.8.0",334"jsonlint": "^1.6.3",335"typescript": "^3.1.6",336"uglify-js": "^3.5.12"337}338}339340341