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
56 lines (56 loc) · 1.51 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.51 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
{
"name": "cloud-http",
"version": "0.0.8",
"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,
"type": "module",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"browser": {
"./dist/api": "./dist/api.browser"
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"testRegex": "./dist/.*((\\.|/)(test|spec))(\\.|\\/.+)(jsx?)$",
"testPathIgnorePatterns": [
"node_modules/"
]
},
"scripts": {
"dev": "watch 'npm run build' .",
"lint": "eslint '**/*.{js,ts,tsx,css,json}'",
"fix": "eslint '**/*.{js,ts,tsx,css,json}' --fix",
"build": "tsc -p .",
"test": "npm run transpile && jest",
"transpile": "tsc --project ./tsconfig.test.json",
"prepare": "npm run build",
"clean": "rm -rf dist node_modules coverage"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "4.4.0",
"@typescript-eslint/parser": "4.4.0",
"eslint": "7.11.0",
"eslint-plugin-prettierx": "github:nilssonemma/eslint-plugin-prettierx#master",
"jest": "^26.5.2",
"prettierx": "github:simonmika/prettierx#newline-before-clause",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3",
"watch": "^1.0.2"
}
}