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
|
{
"name": "ice",
"version": "3.7.0",
"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",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-plugin-rewrite-require": "^1.0.0",
"babel-plugin-transform-builtin-extend": "^1.1.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015-script": "^1.0.0",
"bower": "^1.7.9",
"del": "^2.2.1",
"esprima": "^3.1.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-clean-css": "^2.0.12",
"gulp-concat": "^2.6.0",
"gulp-ext-replace": "^0.3.0",
"gulp-gzip": "^1.4.0",
"gulp-ice-builder": "^1.0.4",
"gulp-jshint": "^2.0.1",
"gulp-newer": "^1.2.0",
"gulp-open": "^2.0.0",
"gulp-sourcemaps": "^2.2.0",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.9",
"hogan.js": "^3.0.2",
"http-proxy": "^1.14.0",
"jshint": "^2.9.2",
"regenerator": "^0.8.46",
"rollup": "^0.36.3",
"source-map": "^0.5.6",
"through2": "^2.0.1",
"vinyl-paths": "^2.1.0"
},
"scripts": {
"gulp:build": "gulp",
"gulp:dist": "gulp dist",
"gulp:watch": "gulp watch",
"gulp:clean": "gulp clean",
"gulp:test": "gulp test",
"gulp:lint": "gulp lint",
"gulp:test:run-with-browser": "gulp test:run-with-browser",
"gulp:test:run-with-browser-es5": "gulp test:run-with-browser-es5",
"gulp:test:run-with-node": "gulp test:run-with-node"
}
}
|