forked from utily/cloudly-http
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.86 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.86 KB
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
{
"name": "cloud-http",
"version": "0.0.35",
"description": "Improved handling of HTTP Requests and Responses.",
"author": "Simon Mika <simon@mika.se>",
"license": "MIT",
"repository": "https://github.com/cogneco/cloud-http",
"bugs": {
"url": "https://github.com/cogneco/cloud-http/issues"
},
"homepage": "https://cogneco.com/open-source/cloud-http",
"private": false,
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"browser": {
"./dist/api": "./dist/api.browser"
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
},
"jest": {
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.test.json"
}
},
"testEnvironment": "node",
"testRegex": "((\\.|/)(test|spec))(\\.|\\/.+)(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"node_modules/",
"dist/"
],
"collectCoverageFrom": [
"**/*.{ts,tsx,js,jsx}",
"!**/node_modules/**",
"!**/dist/**"
],
"preset": "ts-jest",
"testMatch": null
},
"scripts": {
"dev": "watch 'npm run build' .",
"lint": "eslint '**/*.{js,ts,tsx}'",
"fix": "eslint '**/*.{js,ts,tsx}' --fix",
"build": "tsc -p .",
"pretest": "npm run build",
"test": "jest",
"test:watch": "watch jest",
"prepare": "npm run build",
"clean": "rm -rf dist node_modules coverage"
},
"devDependencies": {
"@types/isomorphic-fetch": "0.0.35",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "4.12.0",
"@typescript-eslint/parser": "4.12.0",
"eslint": "7.17.0",
"eslint-plugin-prettierx": "github:nilssonemma/eslint-plugin-prettierx#master",
"isomorphic-fetch": "^3.0.0",
"jest": "^26.6.3",
"prettierx": "github:simonmika/prettierx#newline-before-clause",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"watch": "^1.0.2"
}
}