-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.25 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
89
90
91
92
93
94
95
96
97
98
99
{
"name": "circleci-pr-commenter",
"version": "0.1.2",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "del-cli dist && tsc",
"test": "yarn test:lint && yarn test:ava",
"test:ava": "nyc ava",
"test:lint": "eslint src/** --max-warnings=0",
"coverage": "nyc report --reporter=lcov",
"release": "np",
"prepublishOnly": "npm run build"
},
"description": "A library that lets you post comments to your GitHub pull request from CircleCI",
"main": "dist/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"repository": "https://github.com/Fumler/circleci-pr-commenter.git",
"author": "Fredrik Pettersen <[email protected]>",
"license": "MIT",
"keywords": [
"circleci",
"circle",
"ci",
"pr",
"github",
"comment",
"pull request"
],
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaVersion": 2019,
"sourceType": "module"
},
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-explicit-any": "off"
}
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 110
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"**/*test.ts"
]
},
"devDependencies": {
"@types/node": "^11.10.0",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"ava": "^1.2.1",
"chrome-launcher": "^0.10.5",
"coveralls": "^3.0.3",
"del-cli": "^1.1.0",
"dotenv": "^6.2.0",
"eslint": "^5.14.1",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"lighthouse": "^4.1.0",
"nock": "^10.0.6",
"np": "^4.0.2",
"nyc": "^13.3.0",
"prettier": "^1.16.4",
"prettier-eslint": "^8.8.2",
"ts-node": "^8.0.2",
"typescript": "^3.3.3333"
},
"dependencies": {
"gh-got": "^8.1.0"
}
}