-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
118 lines (118 loc) · 3.19 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "psn-api",
"description": "A well-tested library that lets you get trophy, user, and game data from the PlayStation Network.",
"keywords": [
"psn",
"playstation",
"trophies",
"npsso",
"achievements",
"ps4",
"ps5"
],
"version": "0.0.0-development",
"main": "dist/index.js",
"module": "dist/psn-api.esm.js",
"typings": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/psn-api.esm.js",
"types": "./dist/index.d.ts"
}
},
"author": "Wes Copeland",
"license": "MIT",
"files": [
"dist",
"src"
],
"scripts": {
"dev": "dts watch",
"playground": "esrun --watch src/__playground.ts",
"build": "dts build",
"prepare": "dts build",
"format": "prettier --write . '**/*.{json,md,js,ts,tsx}'",
"format:write": "prettier --write . '**/*.{json,md,js,ts,tsx}'",
"format:check": "prettier --check . '**/*.{json,md,js,ts,tsx}'",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"lint:fix": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx . --fix",
"test": "jest --selectProjects UNIT",
"test:coverage": "jest --selectProjects UNIT --coverage",
"verify": "npm run format:check && npm run lint && npm run test:coverage && npm run build && npm run size",
"size": "size-limit",
"analyze": "size-limit --why",
"semantic-release": "semantic-release"
},
"dependencies": {
"isomorphic-unfetch": "^3.1.0"
},
"peerDependencies": {},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@digitak/esrun": "^3.2.19",
"@faker-js/faker": "^7.6.0",
"@size-limit/preset-small-lib": "^8.1.2",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.12",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv-flow-cli": "^1.0.0",
"dts-cli": "^1.6.3",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-sonarjs": "^0.16.0",
"eslint-plugin-unicorn": "^44.0.2",
"husky": "^4.3.8",
"jest": "^29.4.1",
"msw": "^1.1.0",
"prettier": "2.7.1",
"pretty-quick": "^3.1.3",
"semantic-release": "^19.0.5",
"size-limit": "^8.1.2",
"ts-jest": "^29.0.5",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"size-limit": [
{
"path": "dist/psn-api.cjs.production.min.js",
"limit": "10 KB",
"brotli": true
},
{
"path": "dist/psn-api.esm.js",
"limit": "10 KB",
"brotli": true
}
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"master",
"next"
]
},
"repository": {
"type": "git",
"url": "https://github.com/achievements-app/psn-api.git"
},
"resolutions": {
"rxjs": "^6.6.0"
}
}