-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.87 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "itee-server",
"version": "6.2.7",
"description": "The server side of the Itee solution for 3d web content, this package is design to work with an Itee client.",
"keywords": [
"itee",
"itee-server",
"webgl",
"three",
"3d",
"backend"
],
"author": {
"name": "Itee (Tristan Valcke)",
"url": "https://github.com/Itee"
},
"contributors": [],
"license": "BSD-3-Clause",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/Itee/itee-server.git"
},
"main": "builds/itee-server.cjs.js",
"module": "builds/itee-server.esm.js",
"browser": "",
"homepage": "https://github.com/Itee/itee-server#readme",
"man": "./docs/index.html",
"bugs": {
"url": "https://github.com/Itee/itee-server/issues"
},
"engines": {
"node": ">=8.16.0"
},
"os": [
"win32",
"linux"
],
"cpu": [
"x64",
"ia32"
],
"scripts": {
"default": "gulp",
"help": "gulp help",
"patch": "gulp patch",
"clean": "gulp clean",
"lint": "gulp lint",
"doc": "gulp doc",
"build-test": "gulp build-test",
"bench": "gulp bench",
"unit": "gulp unit",
"test": "gulp test",
"build": "gulp build",
"release": "gulp release",
"semantic-release": "semantic-release --dry-run --no-ci",
"postversion": "gulp build"
},
"dependencies": {
"express": "^4.17.2",
"itee-validators": "^5.3.5",
"itee-core": "^1.2.2",
"itee-database": "^8.1.5"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^9.0.0",
"@semantic-release/release-notes-generator": "^10.0.3",
"ansi-colors": "^4.1.1",
"benchmark": "^2.1.4",
"chai": "^4.3.6",
"cz-conventional-changelog": "^3.3.0",
"del": "^6.0.0",
"eslint-plugin-mocha": "^10.0.3",
"fancy-log": "^2.0.0",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-jsdoc3": "^3.0.0",
"karma": "^6.3.16",
"karma-benchmark": "^1.0.4",
"karma-benchmarkjs-reporter": "^1.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^2.1.2",
"karma-htmlfile-reporter": "^0.3.8",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"minimist": "^1.2.5",
"mocha": "^9.2.0",
"mochawesome": "^7.0.1",
"rollup": "^2.67.2",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^19.0.2"
},
"optionalDependencies": {
"express-favicon": "^2.0.1",
"morgan": "^1.10.0",
"rotating-file-stream": "^3.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}