-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 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
49
50
51
52
53
54
55
56
57
{
"name": "github-now-playing",
"description": "Display what you're currently listening to on your Github profile",
"version": "0.1.0",
"main": "dist/index.js",
"repository": "wsmd/github-now-playing",
"author": "Waseem Dahman <dwaseem@icloud.com>",
"license": "MIT",
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsc",
"prebuild": "rm -rf dist",
"prepack": "yarn build",
"lint": "eslint . --ext .ts",
"test": "jest",
"test:all": "yarn typecheck && yarn lint && yarn test:coverage",
"test:coverage": "jest --coverage --verbose",
"report-coverage": "cat ./coverage/lcov.info | coveralls"
},
"files": [
"dist"
],
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 100
},
"dependencies": {
"github-profile-status": "^1.0.0",
"node-fetch": "^2.6.0",
"osascript-tag": "^0.1.2",
"yanl": "^0.1.0-beta.0"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node-fetch": "^2.5.3",
"@wsmd/eslint-config": "1.1.0",
"coveralls": "^3.0.9",
"eslint": "^6.7.1",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.2.0",
"tslint": "^6.0.0-beta1",
"typescript": "^3.7.2"
},
"keywords": [
"music",
"nowplaying",
"now-playing",
"status",
"profile",
"github",
"spotify",
"itunes",
"last.fm"
]
}