-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.45 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
{
"name": "easy-spotify-ts",
"version": "0.3.0",
"description": "A Spotify Web API library in Typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"axios": "^0.21.4"
},
"files": [
"dist"
],
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^9.0.0",
"@types/node": "14.17.6",
"@types/sinon": "^10.0.3",
"@types/sinon-chai": "^3.2.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"chai": "^4.2.0",
"codecov": "^3.2.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-chai-expect": "^2.2.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.1.1",
"nyc": "^15.0.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"sinon": "^11.1.2",
"sinon-chai": "^3.3.0",
"ts-loader": "^9.2.6",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"scripts": {
"clear": "rimraf ./dist",
"example": "node dist/examples/app.js",
"build:tsc": "yarn run clear && tsc",
"build:example": "rimraf ./example/dist && tsc ./examples/app.ts --outDir ./examples/dist --lib es2015,es6,dom",
"build:all": "yarn run build:tsc && yarn run build:example",
"dev": "tsc -w",
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
"test:tdd": "mocha -r ts-node/register tests/**/*.spec.ts --watch --watch-files src/**/*.ts,tests/**/*.ts",
"lint": "eslint '*/**/*.{js,ts}' --quiet --fix",
"prepush": "yarn run lint",
"test:coverage": "nyc yarn test",
"test:report": "nyc report --reporter=text-lcov > coverage.lcov"
},
"nyc": {
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/bruno-lombardi/easy-spotify-ts"
},
"keywords": [
"spotify",
"library",
"typescript",
"web",
"api",
"spotify recommendations"
],
"author": "Bruno Lombardi <[email protected]> (https://github.com/bruno-lombardi)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bruno-lombardi/easy-spotify-ts/issues"
},
"homepage": "https://github.com/bruno-lombardi/easy-spotify-ts#readme"
}