-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.38 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.38 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@itee/database",
"version": "10.0.1",
"description": "The abstract database side of the Itee solution for 3d web content, this package is design to be inherited and run on an Itee server.",
"keywords": [
"itee",
"database",
"library"
],
"author": {
"name": "Itee (Tristan Valcke)",
"url": "https://github.com/Itee"
},
"contributors": [],
"license": "BSD-3-Clause",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/Itee/database.git"
},
"type": "module",
"main": "builds/database.cjs.js",
"module": "builds/database.esm.js",
"browser": "",
"homepage": "https://github.com/Itee/database#readme",
"man": "./docs/index.html",
"bugs": {
"url": "https://github.com/Itee/database/issues"
},
"engines": {
"node": ">=20"
},
"os": [
"win32",
"linux"
],
"cpu": [
"x64",
"ia32"
],
"scripts": {
"default": "gulp --tasks",
"refresh": "node ./node_modules/@itee/tasks/scripts/refresh.mjs",
"help": "gulp help",
"patch": "gulp patch",
"clean": "gulp clean",
"lint": "gulp lint",
"doc": "gulp doc",
"build": "gulp build",
"tests:run": "gulp run-tests",
"tests:bundling": "gulp check-bundling",
"tests:bundling:build-import": "gulp check-bundling-from-esm-build-import",
"tests:bundling:files-import": "gulp check-bundling-from-esm-files-import",
"tests:bundling:files-direct": "gulp check-bundling-from-esm-files-direct",
"tests:benches:compute": "gulp compute-benchmarks",
"tests:benches:run": "gulp run-benchmarks",
"tests:benches:run:back": "gulp run-benchmarks-for-backend",
"tests:benches:run:front": "gulp run-benchmarks-for-frontend",
"tests:units:compute": "gulp compute-unit-tests",
"tests:units:run": "gulp run-unit-tests",
"tests:units:run:back": "gulp run-unit-tests-for-backend",
"tests:units:run:front": "gulp run-unit-tests-for-frontend",
"release": "gulp release",
"semantic-release": "semantic-release --dry-run --no-ci"
},
"dependencies": {
"@itee/core": "^3.0.1",
"@itee/utils": "^7.0.1",
"@itee/validators": "^7.0.1",
"uuid": "^13.0.0"
},
"devDependencies": {
"@itee/tasks": "^1.4.6"
},
"overrides": {
"semantic-release-gitmoji": {
"semantic-release": "<26",
"@semantic-release/github": "12.0.2",
"@semantic-release/npm": "13.1.3"
}
}
}