UNPKG

spinjs

Version:

[![Join the chat at https://gitter.im/sysgears/spinjs](https://badges.gitter.im/sysgears/spinjs.svg)](https://gitter.im/sysgears/spinjs?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![npm version](https://badge.fury.io/js/spi

105 lines (104 loc) 2.44 kB
{ "name": "spinjs", "version": "0.4.193", "main": "lib/index.js", "scripts": { "clean": "rimraf ./lib", "build": "tsc", "watch": "tsc -w", "lint": "tslint --fix -p tsconfig.json -c tslint.json", "tests": "jest", "tests:watch": "jest --watch", "test": "yarn tests && yarn lint", "precommit": "lint-staged", "prepublishOnly": "yarn clean && yarn build" }, "repository": { "type": "git", "url": "git+https://github.com/sysgears/jsapp.git" }, "bugs": { "url": "https://github.com/sysgears/jsapp/issues" }, "homepage": "https://github.com/sysgears/jsapp/packages/spinjs#readme", "files": [ "src", "lib", "html-plugin-template.ejs", "spin.config.js", "spin.js", "webpack.config.js" ], "bin": { "spin": "./spin.js" }, "devDependencies": { "@types/inquirer": "^0.0.35", "@types/ip": "^0.0.30", "@types/jest": "^23.3.4", "@types/lodash": "^4.14.71", "@types/mkdirp": "^0.5.0", "@types/node": "^7.0.18", "@types/webpack": "^3.0.10", "@types/webpack-sources": "^0.1.2", "@types/yargs": "^8.0.2", "husky": "^0.14.3", "jest": "^23.6.0", "lint-staged": "^4.1.3", "prettier": "^1.6.1", "rimraf": "^2.6.2", "ts-jest": "^23.10.4", "tslint": "^5.2.0", "tslint-config-prettier": "^1.5.0", "tslint-plugin-prettier": "^1.3.0", "typescript": "^2.4.1" }, "lint-staged": { "*.{ts,tsx}": [ "tslint --fix", "git add" ], "*.{json}": [ "prettier --write", "git add" ] }, "dependencies": { "connect-cors": "^0.5.6", "debug": "^3.1.0", "detect-port": "^1.2.2", "dlv": "^1.1.2", "glob": "^7.1.2", "humps": "^2.0.1", "ip": "^1.1.5", "is-docker": "^1.1.0", "lodash": "^4.17.4", "minilog": "^3.1.0", "mkdirp": "^0.5.1", "node-fetch": "^2.2.0", "require-relative": "^0.8.7", "serve-static": "^1.13.1", "source-list-map": "^2.0.0", "source-map": "^0.7.3", "source-map-support": "^0.4.15", "webpack-merge": "^4.1.0", "webpack-sources": "^1.0.1", "yargs": "^8.0.2" }, "prettier": { "printWidth": 120, "singleQuote": true, "parser": "babylon" }, "jest": { "transform": { ".ts": "ts-jest" }, "testRegex": "(/__tests__/.*\\.(test|spec))\\.(ts|js)$", "moduleFileExtensions": [ "ts", "js", "json" ] } }