-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
114 lines (114 loc) · 2.98 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
112
113
114
{
"name": "itee-client",
"version": "8.1.2",
"description": "The client side of the Itee solution for 3d web, this package is design to work with an Itee server.",
"keywords": [
"itee",
"itee-client",
"ui",
"webgl",
"three",
"threejs-full-es6",
"3d",
"frontend"
],
"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-client"
},
"main": "builds/itee-client.cjs.js",
"module": "builds/itee-client.esm.js",
"browser": "builds/itee-client.iife.js",
"homepage": "https://github.com/Itee/itee-client#readme",
"man": "./docs/index.html",
"bugs": {
"url": "https://github.com/Itee/itee-client/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": {
"itee-core": "^1.2.2",
"itee-utils": "^5.3.2",
"itee-validators": "^5.3.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/eslint-parser": "^7.17.0",
"@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",
"eslint-plugin-vue": "^8.4.1",
"fancy-log": "^2.0.0",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-jsdoc3": "^3.0.0",
"gulp-rename": "^2.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-ie-launcher": "^1.0.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-opera-launcher": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"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"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}