-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
92 lines (92 loc) · 3.13 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
90
91
92
{
"name": "@genexus/web-standard-functions",
"version": "0.71.0",
"description": "GeneXus JavaScript standard functions library for web generators",
"main": "dist/web-standard-functions.js",
"module": "dist/lib-esm/index.js",
"typings": "dist/types/index.d.ts",
"type": "module",
"scripts": {
"build": "npm run clean && npm run generate-api && npm run build.commonjs && npm run build.es6",
"build.commonjs": "tsc",
"build.es6": "tsc -m es6 --outDir ./dist/lib-esm",
"clean": "shx rm -rf ./dist && shx rm -f ./src/index.ts && shx rm -rf ./src/generator/out",
"generate-api": "cd ./node_modules/standard-api-generator && node ./index.js -o ../../src/generator/options.json && cd ../..",
"lint": "eslint .",
"precommit": "pretty-quick --staged && npm run lint",
"pretty-quick": "pretty-quick",
"start": "npm run generate-api && tsc --watch",
"test": "env-cmd ./test/.env jest --no-cache --maxWorkers 2",
"test.prod": "npm run lint && npm run test -- --coverage --no-cache",
"test.watch": "jest --watch --no-cache",
"validate": "npm run lint && npm run test && npm run build"
},
"files": [
"dist",
"src/generator/out/angular_metadata.json"
],
"engines": {
"node": ">=8.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/genexuslabs/web-standard-functions.git"
},
"keywords": [
"genexus",
"javascript",
"library"
],
"author": "GeneXus",
"license": "MIT",
"bugs": {
"url": "https://github.com/genexuslabs/web-standard-functions/issues"
},
"homepage": "https://github.com/genexuslabs/web-standard-functions#readme",
"devDependencies": {
"@stylistic/eslint-plugin-ts": "^2.10.1",
"@types/jest": "^29.5.14",
"@types/pubsub-js": "^1.5.18",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"atob": "^2.1.2",
"btoa": "^1.2.1",
"env-cmd": "^8.0.2",
"eslint": "^9.14.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^50.4.3",
"eslint-plugin-react": "^7.30.0",
"husky": "^2.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-websocket-mock": "^1.5.1",
"mock-socket": "~8.0",
"prettier": "^1.19.1",
"pretty-quick": "^1.11.1",
"shx": "^0.3.2",
"standard-api-generator": "git+https://github.com/genexuslabs/standard-api-generator.git",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"wait-for-expect": "^3.0.2"
},
"dependencies": {
"@microsoft/applicationinsights-web": "^3.2.1",
"@opentelemetry/auto-instrumentations-web": "^0.39.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.51.1",
"@opentelemetry/instrumentation": "^0.51.1",
"@opentelemetry/resources": "^1.24.1",
"@opentelemetry/sdk-trace-web": "^1.24.1",
"@opentelemetry/semantic-conventions": "^1.24.1",
"@types/websocket": "^1.0.4",
"full-icu": "^1.3.0",
"jdu": "^1.0.0",
"jstz": "^2.1.1",
"loglevel": "^1.6.7",
"luxon": "^1.22.0",
"pubsub-js": "^1.8.0",
"tidy-html5": "^0.1.1",
"unicode-substring": "^1.0.0",
"uuid": "^11.0.2",
"xslt-processor": "^0.11.5"
}
}