51 lines
1.5 KiB
JSON
51 lines
1.5 KiB
JSON
|
{
|
||
|
"name": "@flare/tuitio-connector",
|
||
|
"version": "1.0.0",
|
||
|
"description": "Tuitio connector",
|
||
|
"main": "./lib/index.js",
|
||
|
"types": "./lib/index.d.ts",
|
||
|
"scripts": {
|
||
|
"build": "tsc",
|
||
|
"test": "jest --config jestconfig.json",
|
||
|
"format": "prettier --write \"src/**/*.ts\"",
|
||
|
"lint": "tslint -p tsconfig.json",
|
||
|
"prepublishOnly": "npm test && npm run lint",
|
||
|
"prepush": "npm run build",
|
||
|
"preversion": "npm run lint",
|
||
|
"version": "npm run format && git add -A src",
|
||
|
"push": "npm publish",
|
||
|
"push:major": "npm run version:major && npm run push",
|
||
|
"push:minor": "npm run version:minor && npm run push",
|
||
|
"push:patch": "npm run version:patch && npm run push",
|
||
|
"version:major": "npm version major --no-git-tag-version",
|
||
|
"version:minor": "npm version minor --no-git-tag-version",
|
||
|
"version:patch": "npm version patch --no-git-tag-version"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://lab.code-rove.com/gitea/bricks/tuitio-connector.git"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"flare",
|
||
|
"tuitio-connector"
|
||
|
],
|
||
|
"author": "",
|
||
|
"license": "ISC",
|
||
|
"bugs": {
|
||
|
"url": "https://lab.code-rove.com/gitea/bricks/tuitio-connector/issues"
|
||
|
},
|
||
|
"homepage": "https://lab.code-rove.com/gitea/bricks/tuitio-connector#readme",
|
||
|
"files": [
|
||
|
"lib/**/*"
|
||
|
],
|
||
|
"devDependencies": {
|
||
|
"@types/jest": "^29.4.0",
|
||
|
"jest": "^29.4.1",
|
||
|
"prettier": "^2.8.3",
|
||
|
"ts-jest": "^29.0.5",
|
||
|
"tslint": "^6.1.3",
|
||
|
"tslint-config-prettier": "^1.18.0",
|
||
|
"typescript": "^4.9.5"
|
||
|
}
|
||
|
}
|