generated from hebertcisco/ts-npm-package-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.37 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
{
"name": "spotify-web-playback-ts",
"version": "0.0.3",
"description": "TypeScript Wrapper of Spotify Playback SDK",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"test": "jest --config jest.config.js --passWithNoTests",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tkhduracell/spotify-web-playback-ts.git"
},
"keywords": [
"spotify",
"spotify-playback-sdk",
"typescript"
],
"author": "Filip Lindqvist",
"license": "MIT",
"bugs": {
"url": "https://github.com/tkhduracell/spotify-web-playback-ts/issues"
},
"homepage": "https://github.com/tkhduracell/spotify-web-playback-ts#readme",
"devDependencies": {
"@types/jest": "27.4.0",
"@typescript-eslint/eslint-plugin": "5.10.0",
"@typescript-eslint/parser": "5.10.0",
"eslint": "7.32.0",
"eslint-plugin-jest": "25.7.0",
"jest": "27.4.7",
"prettier": "2.5.1",
"ts-jest": "27.1.3",
"typescript": "4.5.5"
},
"files": [
"lib/**/*"
]
}