UNPKG

locutus

Version:

Locutus other languages' standard libraries to JavaScript for fun and educational purposes

99 lines (98 loc) 3.91 kB
{ "name": "locutus", "version": "2.0.14", "license": "MIT", "description": "Locutus other languages' standard libraries to JavaScript for fun and educational purposes", "homepage": "https://locutus.io", "author": "Kevin van Zonneveld <kevin@vanzonneveld.net>", "engines": { "node": ">= 0.12.0" }, "devDependencies": { "async": "2.0.0-rc.3", "babel-cli": "6.23.0", "babel-core": "6.23.1", "babel-eslint": "7.1.1", "babel-plugin-add-module-exports": "0.2.1", "babel-plugin-es6-promise": "1.1.1", "babel-plugin-syntax-async-functions": "6.13.0", "babel-plugin-transform-async-to-generator": "6.22.0", "babel-plugin-transform-object-assign": "6.22.0", "babel-preset-es2015": "6.22.0", "babel-register": "^6.26.0", "browserify": "13.0.0", "budo": "11.3.2", "chai": "3.5.0", "cross-env": "1.0.7", "depurar": "0.3.0", "eslint": "3.15.0", "eslint-config-standard": "6.2.1", "eslint-plugin-promise": "3.4.1", "eslint-plugin-standard": "2.0.1", "esprima": "^4.0.1", "fakefile": "0.0.8", "globby": "4.0.0", "indent-string": "2.1.0", "invig": "0.0.22", "js-yaml": "3.6.0", "lodash": "4.17.10", "mkdirp": "0.5.1", "mocha": "5.2.0", "npm-run-all": "1.8.0", "rimraf": "2.5.2", "strip-indent": "2.0.0" }, "keywords": [ "php", "golang", "c", "ruby", "python", "js", "locutus" ], "bugs": { "url": "https://github.com/locutusjs/locutus/issues" }, "repository": { "type": "git", "url": "https://github.com/locutusjs/locutus.git" }, "readmeFilename": "README.md", "scripts": { "beautify": "env INVIG_PRETTIER=1 invig --src src", "browser:bundle": "browserify test/browser/app.js --outfile test/browser/bundle.js", "browser:watch": "budo test/browser/app.js --live --serve test/browser/bundle.js", "build:dist": "babel src --out-dir dist --source-maps && cp package.json dist/", "build:indices": "babel-node src/_util/cli.js reindex", "build:tests:noskip": "rimraf test/languages && babel-node src/_util/cli.js writetests --noskip", "build:tests": "rimraf test/languages && babel-node src/_util/cli.js writetests", "build": "npm-run-all build:*", "deploy": "npm-run-all injectweb website:build website:deploy", "fix": "eslint src --fix", "injectweb": "rimraf website/source/{c,golang,php,python,ruby} && babel-node src/_util/cli.js injectweb", "lint": "eslint src", "playground:start": "cd test/browser && babel-node server.js", "release:major": "cross-env SEMANTIC=major npm run release", "release:minor": "cross-env SEMANTIC=minor npm run release", "release:patch": "cross-env SEMANTIC=patch npm run release", "release": "git commit CHANGELOG.md -m 'Update CHANGELOG.md' && npm version ${SEMANTIC:-patch} -m \"Release %s\" && git push --tags && git push && npm run build:dist && cd dist && npm publish", "test:languages:noskip": "npm run build:tests:noskip && cross-env DEBUG=locutus:* mocha --compilers js:babel-register --reporter spec --recursive test/languages --grep \"${TEST_GREP:-}\"", "test:languages": "npm run build:tests && cross-env DEBUG=locutus:* mocha --compilers js:babel-register --reporter spec --recursive test/languages --grep \"${TEST_GREP:-}\"", "test:module": "babel-node test/module/module.js", "test:util": "mocha --compilers js:babel-register --reporter spec test/util/", "test": "npm-run-all test:languages test:util test:module", "website:install": "cd website && npm install", "website:deploy": "cd website && hexo deploy", "website:start": "cd website && hexo server", "website:build": "cd website && hexo generate", "website:clean": "cd website && hexo clean" }, "dependencies": { "es6-promise": "^4.2.5" }, "browser": { "fs": false, "child_process": false } }