forked from slim-gears/rxrpc-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.25 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
{
"name": "ng-rxrpc",
"version": "0.3.14",
"description": "RxRPC client library for Angular 6",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "karma start ./karma.conf.js --single-run",
"debug": "karma start ./karma.conf.js --browsers ChromeDebugging",
"runTest": "karma run ./karma.conf.js --browsers ChromeDebugging"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slim-gears/ng-rxrpc.git"
},
"keywords": [
"rxjs",
"angular",
"websocket",
"rpc"
],
"author": "Denis Itskovich",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/slim-gears/ng-rxrpc/issues"
},
"homepage": "https://github.com/slim-gears/ng-rxrpc#readme",
"devDependencies": {
"@types/jasmine": "^2.8.8",
"babel-polyfill": "^6.26.0",
"jasmine": "^3.2.0",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.1.2",
"karma-typescript": "^3.0.13",
"typescript": "^3.0.1"
},
"dependencies": {
"rxjs": "^6.2.2"
},
"files": [
"dist/**/*",
"*.ts",
"src/lib/**/*",
"*.json",
"LICENSE",
"karma.conf.js"
]
}