-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.51 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "@colorstack/stable-matching",
"version": "1.0.0",
"description": "Implementation of the Gale-Shapley (Stable Matching) algorithm.",
"author": "Rami Abdou",
"license": "MIT",
"files": [
"dist/**/*"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --ignore-path .gitignore --list-different \"**/*.+(ts|tsx)\"",
"format:fix": "prettier --ignore-path .gitignore --write \"**/*.+(ts|tsx)\"",
"lint": "eslint --ignore-path .gitignore . --ext .ts,.tsx src",
"lint:fix": "eslint --ignore-path .gitignore . --ext .ts,.tsx src --fix",
"prepare": "npm run build",
"prepublishOnly": "npm run format && npm run lint && npm test",
"test": "jest"
},
"dependencies": {},
"devDependencies": {
"@types/jest-in-case": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-rami": "^1.0.9",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"jest": "^26.6.3",
"jest-in-case": "^1.0.2",
"prettier": "^2.3.0",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
}
}