lemmy/api_tests/package.json

28 lines
999 B
JSON
Raw Normal View History

{
"name": "api_tests",
"version": "0.0.1",
"description": "API tests for lemmy backend",
"main": "index.js",
"repository": "https://github.com/LemmyNet/lemmy",
"author": "Dessalines",
"license": "AGPL-3.0",
"scripts": {
"lint": "tsc --noEmit && eslint --report-unused-disable-directives --ext .js,.ts,.tsx src && prettier --check 'src/**/*.ts'",
2020-12-20 21:16:57 +00:00
"fix": "prettier --write src && eslint --fix src",
"api-test": "jest -i follow.spec.ts && jest -i src/post.spec.ts && jest -i comment.spec.ts && jest -i private_message.spec.ts && jest -i user.spec.ts && jest -i community.spec.ts"
},
"devDependencies": {
2021-05-28 15:46:23 +00:00
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.25.0",
"eslint-plugin-prettier": "^4.0.0",
2021-07-06 14:57:54 +00:00
"jest": "^27.0.6",
"lemmy-js-client": "0.17.0-rc.61",
"node-fetch": "^2.6.1",
"prettier": "^2.7.1",
2021-07-06 14:57:54 +00:00
"ts-jest": "^27.0.3",
"typescript": "^4.8.4"
}
}