-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.58 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "fpl-ts",
"version": "1.0.0",
"description": "A JS/TS wrapper for FPL API",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/",
"CHANGELOG.md",
"package.json",
"package-lock.json"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p tsconfig.json",
"prepare": "npm run build"
},
"homepage": "https://roboflank.github.io/fpl-ts",
"repository": {
"type": "git",
"url": "https://github.com/roboflank/fpl-ts.git"
},
"keywords": [
"fpl",
"fpl-api",
"fantasy-football",
"epl-api"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.9",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/node": "^14.14.14",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"prettier": "^2.1.2",
"semantic-release": "^17.3.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "all"
},
"dependencies": {
"axios": "^0.21.0",
"user-agent-array-ts": "^2.1.1"
}
}