-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
85 lines (85 loc) · 2.65 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
{
"name": "rxq",
"version": "2.0.4",
"sideEffects": false,
"description": "A reactive wrapper for the Qlik Analytics Platform APIs",
"main": "index.js",
"qix-version": "12.329.0",
"scripts": {
"build-qix-methods": "node scripts/build-qix-methods.js",
"compile-cjs": "node scripts/compile_cjs.js",
"compile-esm5": "node scripts/compile_esm5.js",
"compile-esm2015": "node scripts/compile_esm2015.js",
"compile-all": "npm run compile-cjs && npm run compile-esm5 && npm run compile-esm2015",
"make-packages": "node scripts/make-packages.js",
"build": "node scripts/build-browser",
"build-min": "node scripts/build-browser --min",
"build-dist": "npm run compile-all && npm run make-packages && npm run build && npm run build-min",
"build-release": "npm run build-dist && cp -R dist/build/ rxq-build && zip rxq-build.zip rxq-build/* && rm -rf rxq-build/",
"test-unit": "mocha test/unit/*.spec.js",
"test-e2e": "mocha test/e2e/*.spec.js",
"test": "npm run test-unit && npm run test-e2e",
"test-compile": "mocha --compilers js:babel-core/register test/unit/*-spec.js",
"docs-build": "gitbook build",
"docs-serve": "gitbook serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axisgroup/RxQ.git"
},
"keywords": [
"qap",
"qix",
"engine",
"engineAPI",
"qrs"
],
"author": "Axis Group",
"license": "ISC",
"homepage": "https://github.com/axisgroup/RxQ#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.16.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.16.0",
"babel-regenerator-runtime": "^6.5.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-generator": "^2.1.0",
"chai-spies": "^1.0.0",
"dockerode": "^2.5.3",
"fs-extra": "^4.0.2",
"gitbook-cli": "^2.3.2",
"mocha": "^4.0.1",
"mock-socket": "^7.0.0",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.2",
"rxjs": "^6.2.0",
"string-replace-webpack-plugin": "^0.1.3",
"webpack": "^4.10.2"
},
"dependencies": {
"babel-runtime": "^6.18.0",
"https-browserify": "0.0.1",
"immer": "^2.1.1",
"stream-http": "~2.0.1",
"ws": "^1.1.1"
},
"peerDependencies": {
"rxjs": "^6.2.0"
},
"bugs": {
"url": "https://github.com/axisgroup/RxQ/issues"
},
"browser": {
"ws": false
},
"directories": {
"example": "examples"
}
}