-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 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
{
"name": "deepstream-rx-client",
"version": "0.0.1",
"description": "RxJS wrapper for deepstream.io client",
"main": "index.js",
"scripts": {
"test": "npm run pretest && mocha",
"clean_example": "rm -rf examples\\angular2-example\\dist",
"copyDir": " copyfiles dist\\**\\*.* examples\\angular2-example",
"build": "tsc || npm run copyDir",
"pretest": "tsc test/*Spec.ts --module commonjs"
},
"author": "",
"license": "MIT",
"private": true,
"devDependencies": {
"autodts": "0.0.6",
"chai": "^3.5.0",
"copy-dir": "0.0.8",
"deepstream.io": "^0.8.1",
"karma": "^0.13.22",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.3",
"karma-firefox-launcher": "^0.1.7",
"karma-mocha": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-requirejs": "^0.2.6",
"karma-sinon": "^1.0.4",
"karma-typescript-preprocessor2": "^1.1.1",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"phantomjs-prebuilt": "^2.1.6",
"sinon": "^1.17.3",
"ts-loader": "^0.8.1",
"typescript": "^1.8.9",
"typings": "^0.6.10",
"webpack": "^1.12.14"
},
"dependencies": {
"deepstream.io-client-js": "^0.4.0",
"rxjs": "^5.0.0-beta.2"
}
}