-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.64 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
{
"name": "lastfm-nodejs-client",
"version": "1.5.1",
"description": "A NodeJS wrapper client for LastFm API. Fetching public data by username using the LastFm public API",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/@types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"lint": "eslint src",
"lint-fix": "eslint src --fix",
"prepare": "npm run build",
"prepublish": "npm test && npm run lint && npm run prepare",
"clean": "rimraf dist",
"publish": "npm run prepublish && npm publish --access public",
"test": "npx playwright test --reporter=list"
},
"keywords": [
"client",
"commonjs",
"esm",
"lastFm",
"node",
"nodejs",
"typescript"
],
"author": "Mannuel Ferreira",
"maintainers": [
"Mannuel Ferreira"
],
"license": "MIT",
"dependencies": {
"cross-fetch": "^4.0.0",
"dotenv": "^16.3.1",
"rimraf": "^5.0.5"
},
"devDependencies": {
"@playwright/test": "^1.39.0",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"eslint": "^8.52.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.0.0",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mannuelf/lastfm-nodejs-client.git"
},
"bugs": {
"url": "https://github.com/mannuelf/lastfm-nodejs-client/issues"
},
"homepage": "https://github.com/mannuelf/lastfm-nodejs-client#readme",
"type": "module"
}