@ag1/return_switch
Version:
a switch condition that return result
52 lines (51 loc) • 1.52 kB
JSON
{
"name": "@ag1/return_switch",
"version": "1.1.1",
"description": "a switch condition that return result",
"main": "./lib/index.js",
"jsnext:main": "./lib-module/index.js",
"module": "./lib-module/index.js",
"typings": "./lib/index.d.ts",
"author": "agent one co., ltd.",
"license": "MIT",
"private": false,
"scripts": {
"tsc:onlyts": "tsc -b tsconfig-onlyts.json",
"tsc:module": "tsc -b tsconfig-module.json",
"compile": "yarn tsc:onlyts && yarn tsc:module",
"lint": "eslint --ext .ts,.js . --fix",
"prettier:config": "prettier --no-config --write \"./*.{json,yml}\"",
"prettier:ts": "prettier --write \"./src/**/*.ts\"",
"prettier": "yarn prettier:config && yarn prettier:ts",
"test": "jest",
"build": "yarn prettier && yarn lint && yarn compile && yarn test"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^25.3.0",
"prettier": "^2.0.4",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
},
"keywords": [
"control-statement",
"typescript"
],
"repository": {
"url": "https://github.com/AgentOneCoLtd/return_switch.git",
"type": "git"
},
"files": [
"lib",
"lib-module",
"src"
]
}