-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.31 KB
/
package.json
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
46
47
48
49
50
{
"name": "pokemon-randomizer",
"version": "0.1.7",
"description": "Library to pick random teams of pokemon",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"depcheck": "depcheck",
"test": "mocha -r ts-node/register test/**/*.ts"
},
"files": [
"dist"
],
"keywords": [
"pokemon",
"random"
],
"author": "Dylan Stankievech",
"license": "ISC",
"repository": "https://github.com/Dylanlan/pokemon-randomizer",
"dependencies": {
"chance": "^1.1.8",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/chance": "^1.1.1",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"chai": "^4.3.6",
"depcheck": "^1.4.3",
"eslint": "^8.18.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-mocha": "^10.0.5",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.0",
"mocha": "^10.0.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"packageManager": "yarn@4.0.1"
}