]> Untitled Git - lemmy.git/blob - api_tests/package.json
Use enum for registration mode setting (#2604)
[lemmy.git] / api_tests / package.json
1 {
2   "name": "api_tests",
3   "version": "0.0.1",
4   "description": "API tests for lemmy backend",
5   "main": "index.js",
6   "repository": "https://github.com/LemmyNet/lemmy",
7   "author": "Dessalines",
8   "license": "AGPL-3.0",
9   "scripts": {
10     "lint": "tsc --noEmit && eslint --report-unused-disable-directives --ext .js,.ts,.tsx src && prettier --check 'src/**/*.ts'",
11     "fix": "prettier --write src && eslint --fix src",
12     "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"
13   },
14   "devDependencies": {
15     "@types/jest": "^26.0.23",
16     "@typescript-eslint/eslint-plugin": "^5.21.0",
17     "@typescript-eslint/parser": "^5.21.0",
18     "eslint": "^8.25.0",
19     "eslint-plugin-prettier": "^4.0.0",
20     "jest": "^27.0.6",
21     "lemmy-js-client": "0.17.0-rc.61",
22     "node-fetch": "^2.6.1",
23     "prettier": "^2.7.1",
24     "ts-jest": "^27.0.3",
25     "typescript": "^4.8.4"
26   }
27 }