forked from utily/cloudly-router
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.42 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
{
"name": "cloud-router",
"version": "0.0.6",
"description": "Router for web worker based backends such as CloudFlare Workers.",
"author": "Cogneco AB",
"license": "MIT",
"repository": "https://github.com/cogneco/cloud-router",
"bugs": {
"url": "https://github.com/cogneco/cloud-router/issues"
},
"homepage": "https://github.com/cogneco/cloud-router#readme",
"private": false,
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
},
"jest": {
"testEnvironment": "node",
"testRegex": "((\\.|/)(test|spec))(\\.|\\/.+)jsx?$",
"testPathIgnorePatterns": [
"node_modules/"
]
},
"scripts": {
"dev": "watch 'npm run build' .",
"lint": "eslint '**/*.{js,ts,tsx}'",
"fix": "eslint '**/*.{js,ts,tsx}' --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": {
"cloud-http": "0.0.5"
},
"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.3",
"prettierx": "github:simonmika/prettierx#newline-before-clause",
"ts-jest": "^26.4.1",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3"
}
}