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
|
{
"name": "ice",
"version": "3.7.2",
"description": "Ice for JavaScript runtime",
"author": "Zeroc, Inc.",
"homepage": "https://zeroc.com",
"repository": "https://github.com/zeroc-ice/ice.git",
"license": "GPL-2.0",
"engines": {
"node": ">=0.10.0"
},
"keywords": [
"Ice",
"rpc"
],
"main": "src/index.js",
"types": "src/index.d.ts",
"browserslist": "> 0.25%, not dead",
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"babel-plugin-rewrite-require": "^1.14.5",
"core-js": "^3.1.4",
"core-js-bundle": "^3.1.4",
"del": "^5.0.0",
"esprima": "^4.0.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-ext-replace": "^0.3.0",
"gulp-gzip": "^1.4.2",
"gulp-ice-builder": "^3.0.2",
"gulp-newer": "^1.4.0",
"gulp-rename": "^1.4.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-terser": "^1.2.0",
"gulp-typescript": "^5.0.1",
"gulp-uglifyes": "^0.2.1",
"hogan.js": "^3.0.2",
"http-proxy": "^1.17.0",
"jshint": "^2.10.2",
"plugin-error": "^1.0.1",
"pump": "^3.0.0",
"regenerator-runtime": "^0.13.2",
"rollup": "^1.17.0",
"source-map": "^0.7.3",
"through2": "^3.0.1",
"typescript": "^3.5.3",
"typescript-formatter": "^7.2.2",
"vinyl": "^2.2.0",
"vinyl-paths": "^3.0.0"
},
"scripts": {
"build": "gulp",
"dist": "gulp dist",
"clean": "gulp clean"
},
"dependencies": {}
}
|