-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.4 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
{
"name": "github-profile-status",
"version": "1.0.0",
"description": "Update the status of your GitHub profile programmatically",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/wsmd/github-profile-status",
"homepage": "https://github.com/wsmd/github-profile-status",
"bugs": "https://github.com/wsmd/github-profile-status/issues",
"author": "Waseem Dahman <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"keywords": [
"github",
"profile",
"profile-status",
"automation",
"github-api",
"api",
"graphql"
],
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsc",
"prepack": "rm -rf dist && yarn build",
"lint": "tslint --project .",
"test": "jest",
"test:all": "yarn typecheck && yarn lint && yarn test:coverage",
"test:coverage": "jest --coverage --verbose",
"report-coverage": "cat ./coverage/lcov.info | coveralls"
},
"dependencies": {
"graphql-request": "^1.8.2"
},
"devDependencies": {
"@types/fetch-mock": "^7.3.1",
"@types/jest": "^24.0.22",
"@types/node": "^12.12.7",
"coveralls": "^3.0.7",
"fetch-mock": "^7.7.3",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.1.0",
"tslint": "^5.14.0",
"typescript": "^3.3.4000"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 100
}
}