-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.47 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.47 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
{
"name": "continue-workflows-demo",
"version": "1.0.0",
"description": "A demo repository for testing Continue Workflows",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,json,md}\"",
"type-check": "tsc --noEmit",
"audit": "npm audit",
"audit:fix": "npm audit fix"
},
"keywords": [
"continue",
"workflows",
"demo",
"testing"
],
"author": "Continue Team",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"lodash": "4.17.19"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^20.8.0",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.ts",
"api/**/*.ts",
"!**/*.d.ts",
"!**/node_modules/**",
"!**/__tests__/**"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
}
}