-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.47 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
{
"name": "cf-http-client",
"version": "0.0.0-semantically-released",
"description": "Cloud Foundry wrapper for nodejs written in typescript",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"test": "jest --watch",
"test:ci": "jest --ci",
"lint": "eslint --fix .",
"clean": "rm -fr dist",
"build": "npm run clean && rollup -c",
"semantic-release": "semantic-release"
},
"keywords": [
"Cloud Foundry"
],
"author": "Marco Moretti",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.2",
"msw": "^0.24.1",
"prettier": "^2.2.0",
"rollup": "^2.33.3",
"rollup-plugin-typescript2": "^0.29.0",
"semantic-release": "^17.3.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
},
"dependencies": {
"node-fetch": "^2.6.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"release": {
"branches": [
"main"
]
},
"repository": {
"type": "git",
"url": "https://github.com/marcosvega91/cf-client"
}
}