-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
77 lines (77 loc) · 2.02 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
{
"name": "spotify-web-playback",
"version": "1.4.0",
"description": "Spotify Web Playback API",
"keywords": [
"spotify",
"spotify-web-playback"
],
"repository": "github:Symbitic/spotify-web-playback",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"build:watch": "npm run build -- -w",
"build:types": "tsc --outDir dist --emitDeclarationOnly",
"demo": "node demo.mjs",
"doc": "typedoc",
"lint": "eslint --ext .js,.ts src",
"lint:fix": "eslint --fix --ext .js,.ts src",
"predemo": "npm run build",
"prerelease": "npm run build",
"postbuild": "npm run build:types",
"release": "standard-version",
"test": "jest",
"types": "tsc --noEmit",
"types:watch": "npm run types -- --watch"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(js|ts)": [
"eslint --fix"
]
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.1",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"babel-jest": "^27.0.6",
"cookie-parser": "^1.4.5",
"dotenv": "^10.0.0",
"eslint": "^7.27.0",
"eslint-plugin-import": "^2.23.3",
"express": "^4.17.1",
"husky": "^7.0.2",
"jest": "^27.0.6",
"lint-staged": "^11.0.0",
"node-fetch": "^2.6.1",
"querystring": "^0.2.1",
"rollup": "^2.48.0",
"standard-version": "^9.3.0",
"ts-jest": "^27.0.5",
"typedoc": "^0.21.6",
"typedoc-darker-theme": "^1.1.5",
"typescript": "^4.3.5"
}
}