-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.73 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
60
61
62
63
64
65
66
67
68
69
{
"name": "@cymetrics/monitor-action",
"version": "0.1.1",
"repository": "https://github.com/cymetrics/monitor-action.git",
"author": "MingYou Tsai<[email protected]>",
"license": "Apache-2.0",
"scripts": {
"dev": "ts-node --project tsconfig.prod.json src/dev.ts",
"build": "tsc --project tsconfig.prod.json",
"release": "npx standard-version",
"commit": "git add . && npx git-cz --disable-emoji -S",
"test": "jest"
},
"jest": {
"forceExit": true,
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"coverageReporters": [
"html",
"text-summary",
"json-summary"
],
"setupFiles": [
"./test/setupTests.ts"
],
"preset": "ts-jest",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx)$",
"testEnvironment": "jsdom",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.dev.json"
}
}
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@types/react-dom": "^17.0.0",
"dayjs": "^1.9.7",
"js-yaml": "^3.14.0",
"purgecss": "^3.1.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-vis": "^1.11.7",
"tailwindcss": "^1.9.6"
},
"devDependencies": {
"@testing-library/react": "^11.2.2",
"@types/chart.js": "^2.9.29",
"@types/jest": "^26.0.19",
"@types/js-yaml": "^3.12.5",
"@types/react": "^17.0.0",
"@types/react-vis": "^1.11.5",
"jest": "^26.6.3",
"jest-image-snapshot": "^4.3.0",
"jsdom-screenshot": "^3.2.0",
"react-test-renderer": "^17.0.1",
"ts-jest": "^26.4.4",
"ts-node": "^10.2.1",
"typescript": "^4.1.3"
}
}