goldstack
Version:
Work in progress
41 lines (40 loc) • 1.05 kB
JSON
{
"name": "goldstack",
"version": "0.1.1",
"keywords": [
"cli",
"goldstack",
"starter-project",
"typescript"
],
"homepage": "https://github.com/mxro/goldstack#goldstack",
"repository": {
"type": "git",
"url": "git@github.com:mxro/goldstack.git"
},
"license": "MIT",
"author": "Max Rohde",
"main": "dist/goldstack.js",
"bin": "./bin/goldstack",
"files": [
"dist"
],
"scripts": {
"build": "yarn clean && yarn compile",
"build:watch": "yarn clean && yarn compile:watch",
"clean": "rm -rf ./dist",
"compile": "tsc -p tsconfig.json",
"compile:watch": "tsc -p tsconfig.json --watch",
"coverage": "jest --collect-coverage --passWithNoTests --config=./jest.config.js",
"goldstack": "./bin/goldstack",
"prepublishOnly": "yarn run build",
"test:ci": "jest --passWithNoTests --config=./jest.config.js"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^14.0.6",
"jest": "^26.0.1",
"ts-jest": "^26.1.0",
"typescript": "^3.9.3"
}
}