-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.58 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
{
"name": "@mts-pjsc/bretrics",
"version": "1.0.1",
"description": "Web Monitoring",
"main": "dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/MobileTeleSystems/bretrics-web.git"
},
"author": "MobileTeleSystems",
"license": "MIT",
"scripts": {
"build": "npm run clean && tsc && npm run clean:dist-tests && npm run test:module",
"clean": "rimraf ./dist",
"cs:eslint": "eslint --fix -c .eslintrc.cjs --ext .tsx,.ts,.jsx,.js ./src/",
"clean:dist-tests": "rimraf ./dist/__fixtures__ && rimraf ./dist/__tests__",
"test": "mocha --parallel src/__tests__/*.spec.tsx",
"test:watch": "mocha --parallel --watch --watch-files src/**/*.ts,src/**/*.tsx src/__tests__/*.spec.tsx",
"test:module": "node ./dist/index.js",
"release": "standard-version",
"prepublishOnly": "npm run test && npm run build",
"prepare": "husky install"
},
"keywords": [
"metrics",
"prometheus"
],
"lint-staged": {
"./src/**/*.(ts|tsx|js|jsx)": [
"eslint --fix -c .eslintrc.cjs --ext .tsx,.ts,.jsx,.js"
]
},
"dependencies": {
"web-vitals": "^3.1.1"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@labeg/code-style": "^2.0.63",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"global-jsdom": "^8.6.0",
"husky": "^8.0.2",
"jsdom": "^20.0.3",
"lint-staged": "^13.1.0",
"mocha": "^10.1.0",
"rimraf": "^3.0.2",
"standard-version": "^9.5.0",
"typescript": "^4.9.4"
}
}