2023-02-07 00:32:31 +02:00
|
|
|
{
|
2023-02-08 18:14:57 +02:00
|
|
|
"name": "@flare/tuitio-client",
|
2023-03-14 21:12:16 +02:00
|
|
|
"version": "1.1.0",
|
2023-02-14 00:57:38 +02:00
|
|
|
"description": "Tuitio client is an npm package written in typescript that facilitates the integration of a javascript application with Tuitio.",
|
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",
|
2023-03-17 02:03:30 +02:00
|
|
|
"prepush": "npm install && npm run build",
|
2023-02-07 00:32:31 +02:00
|
|
|
"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-11 20:51:19 +02:00
|
|
|
"license": "MIT",
|
2023-02-07 00:32:31 +02:00
|
|
|
"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": [
|
2023-02-11 22:24:24 +02:00
|
|
|
"lib/**/*",
|
|
|
|
"LICENSE"
|
2023-02-07 00:32:31 +02:00
|
|
|
],
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/jest": "^29.4.0",
|
|
|
|
"jest": "^29.4.1",
|
2023-02-10 02:20:52 +02:00
|
|
|
"jest-environment-jsdom": "^29.4.2",
|
2023-02-07 00:32:31 +02:00
|
|
|
"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
|
|
|
}
|
|
|
|
}
|