-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.86 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
{
"name": "circle-client",
"version": "0.2.4",
"description": "A JavaScript client for CircleCI v2 API",
"main": "dist/client.js",
"types": "dist/src/client.d.ts",
"engines": {
"node": ">=14.17.0"
},
"author": "Jody Heavener <j.heavener@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/jodyheavener/circle-client",
"repository": {
"type": "git",
"url": "git+https://github.com/jodyheavener/circle-client.git"
},
"bugs": {
"url": "https://github.com/jodyheavener/circle-client/issues"
},
"keywords": [
"circleci",
"circle",
"api",
"client",
"ci",
"cd",
"rest"
],
"scripts": {
"build": "yarn compile --minify && yarn types",
"compile": "esbuild src/client.ts --bundle --platform=node --outfile=dist/client.js",
"format": "eslint src/**/*.ts --fix && prettier --write src/**/*.ts",
"lint": "eslint src/**/*.ts && prettier --check src/**/*.ts",
"test": "jest",
"types": "tsc --emitDeclarationOnly --declaration --project tsconfig.json",
"watch": "npm-run-all --parallel \"compile --watch\" \"types --watch\""
},
"dependencies": {
"follow-redirects": "^1.14.9",
"isomorphic-fetch": "^3.0.0"
},
"devDependencies": {
"@types/follow-redirects": "^1.14.1",
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"esbuild": "^0.14.18",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"jest-fetch-mock": "^3.0.3",
"jest-junit": "^13.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"prettier-plugin-organize-imports": "^2.3.4",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
}