Yield generated for dbe41bfd-4e52-4cd1-b414-a84e6bb796d1
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

66 lines
1.6 KiB

{
"name": "@beaussan/nbx",
"version": "0.0.0-development",
"description": "nbx CLI",
"private": false,
"bin": {
"nbx": "bin/nbx"
},
"scripts": {
"format": "prettier --write **/*.{js,ts,tsx,json}",
"lint": "tslint -p .",
"compile": "tsc -p .",
"clean-build": "rm -rf ./build",
"copy-templates": "if [ -e ./src/templates ]; then cp -a ./src/templates ./build/; fi",
"build": "yarn format && yarn lint && yarn clean-build && yarn compile && yarn copy-templates",
"test": "jest",
"watch": "jest --watch",
"snapupdate": "jest --updateSnapshot",
"coverage": "jest --coverage",
"release": "release-it",
"semantic-release": "semantic-release"
},
"files": [
"tsconfig.json",
"tslint.json",
"build",
"LICENSE",
"readme.md",
"docs",
"bin"
],
"license": "MIT",
"dependencies": {
"gluegun": "^2.1.0",
"querystring": "^0.2.0",
"ts-node": "^7.0.1",
"typescript": "3.2.2"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.5",
"@semantic-release/git": "^7.0.18",
"@types/jest": "^23.3.10",
"@types/node": "^10.12.12",
"jest": "^23.6.0",
"prettier": "^1.12.1",
"release-it": "^12.3.0",
"semantic-release": "^15.13.31",
"semantic-release-gitmoji": "^1.3.2",
"ts-jest": "^23.10.5",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^8.0.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"repository": {
"type": "git",
"url": "https://github.com/beaussart/nbx.git"
}
}