tuitio-client/package.json

59 lines
1.7 KiB
JSON
Raw Normal View History

2023-02-07 00:32:31 +02:00
{
2023-02-08 18:14:57 +02:00
"name": "@flare/tuitio-client",
2023-02-07 00:32:31 +02:00
"version": "1.0.0",
2023-02-08 18:14:57 +02:00
"description": "Tuitio client",
2023-02-07 00:32:31 +02:00
"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",
2023-02-08 18:14:57 +02:00
"url": "https://lab.code-rove.com/gitea/bricks/tuitio-client.git"
2023-02-07 00:32:31 +02:00
},
"keywords": [
"flare",
2023-02-08 18:14:57 +02:00
"tuitio-client"
2023-02-07 00:32:31 +02:00
],
2023-02-07 00:43:23 +02:00
"author": {
"name": "Tudor Stanciu",
"email": "tudor.stanciu94@gmail.com",
"url": "https://lab.code-rove.com/tsp"
},
2023-02-07 00:32:31 +02:00
"license": "ISC",
"bugs": {
2023-02-08 18:14:57 +02:00
"url": "https://lab.code-rove.com/gitea/bricks/tuitio-client/issues"
2023-02-07 00:32:31 +02:00
},
2023-02-08 18:14:57 +02:00
"homepage": "https://lab.code-rove.com/gitea/bricks/tuitio-client#readme",
2023-02-07 00:32:31 +02:00
"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"
2023-02-10 01:27:38 +02:00
},
"dependencies": {
"@flare/js-utils": "^1.0.3",
"axios": "^1.3.2"
2023-02-07 00:32:31 +02:00
}
}