@chatie/semver
Version:
The Enhanced Semantic Versioner for NPM
62 lines (61 loc) • 1.58 kB
JSON
{
"name": "@chatie/semver",
"version": "0.6.0",
"description": "The Enhanced Semantic Versioner for NPM",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"directories": {
"test": "tests"
},
"dependencies": {
"@types/semver": "^7.2.0",
"semver": "^7.3.2"
},
"devDependencies": {
"@chatie/eslint-config": "^0.12.1",
"@chatie/tsconfig": "^0.10.1",
"@types/shelljs": "^0.8.5",
"git-scripts": "^0.4.3",
"read-pkg-up": "^6.0.0",
"shelljs": "^0.8.3",
"shx": "^0.3.2",
"tstest": "^0.4.10"
},
"scripts": {
"build": "tsc",
"clean": "shx rm -fr dist/*",
"dist": "npm run clean && npm run build",
"pack": "npm pack",
"lint": "npm run lint:es && npm run lint:ts",
"lint:es": "eslint src/**/*.ts tests/**/*.ts",
"lint:ts": "tsc --noEmit",
"test:pack": "bash -x scripts/npm-pack-testing.sh",
"test": "blue-tape -r ts-node/register \"src/**/*.spec.ts\" \"src/*.spec.ts\" \"tests/*.spec.ts\" \"tests/**/*.spec.ts\""
},
"bin": {
"semver-is-prod": "dist/bin/semver-is-prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chatie/semver.git"
},
"keywords": [
"semver",
"isprod"
],
"author": "Huan LI <zixia@zixia.net>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Chatie/semver/issues"
},
"homepage": "https://github.com/Chatie/semver#readme",
"publishConfig": {
"access": "public",
"tag": "latest"
},
"git": {
"scripts": {
"pre-push": "./scripts/pre-push.sh"
}
}
}