-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
89 lines (89 loc) · 2.36 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@binalyze/tigma",
"version": "1.4.26",
"main": "dist/tigma.js",
"license": "GPL-3.0-only",
"scripts": {
"build:ts": "tsc --build tsconfig.json",
"build:webpack": "webpack --config webpack.config.js --mode production && cp -rf dist/tigma.js public/scripts/tigma.js",
"build": "yarn build:ts && yarn build:webpack",
"serve": "yarn build && webpack-dev-server",
"prepublishOnly": "yarn build",
"push": "git push -f github master && git push -f origin master",
"rimraf": "rm -rf dist",
"clean": "tsc --build --clean",
"test:pipeline": "npm run build:ts && jest --coverage --coverageReporters=cobertura",
"test": "yarn build:ts && jest --watchAll",
"test:cov": "yarn build:ts && jest --coverage",
"testbed": "yarn build:ts && node dist/testbed.js"
},
"dependencies": {
"@types/js-base64": "^2.3.2",
"@types/lodash": "^4.14.157",
"class-transformer": "^0.2.3",
"class-validator": "^0.12.2",
"filtrex": "^2.0.0",
"inversify": "^5.0.1",
"inversify-inject-decorators": "^3.1.0",
"js-base64": "^3.0.4",
"lodash": "^4.17.19",
"reflect-metadata": "^0.1.13",
"yaml": "^1.10.0"
},
"devDependencies": {
"@types/jest": "25.1.2",
"@types/node": "^13.13.12",
"@types/webpack": "^4.41.17",
"jest": "^25.2.6",
"jest-mock-console": "^1.0.0",
"jest-standard-reporter": "^1.0.4",
"prettier": "^2.8.1",
"ts-jest": "25.2.0",
"ts-loader": "^7.0.5",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-obfuscator": "^0.27.4"
},
"files": [
"dist/*",
"README.md",
"package.json"
],
"jest": {
"verbose": true,
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"setupFiles": [
"../test/jest-setup-test.ts"
],
"reporters": [
"jest-standard-reporter"
],
"testPathIgnorePatterns": [
".*.d.ts",
".*.js"
],
"modulePathIgnorePatterns": [],
"coverageThreshold": {
"global": {
"statements": 90,
"branches": 90,
"functions": 90,
"lines": 90
}
}
}
}