forked from ServiceStack/servicestack-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.39 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
{
"name": "@servicestack/client",
"title": "ServiceStack Client Utils",
"version": "1.0.14",
"description": "ServiceStack's TypeScript library providing convenience utilities in developing web apps. Integrates with ServiceStack's Server features including ServiceClient, Server Events, Error Handling and Validation",
"homepage": "https://github.com/ServiceStack/servicestack-client",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/ServiceStack/Issues"
},
"author": "ServiceStack, Inc. (https://servicestack.net)",
"repository": {
"type": "git",
"url": "git+https://github.com/ServiceStack/servicestack-client.git"
},
"scripts": {
"pretest": "tsc",
"dtos": "cd tests/dtos && typescript-ref",
"test": "mocha -t 5000 ./tests/*.js",
"testonly": "mocha -t 5000 ./tests/serverevents.spec.js"
},
"files": [
"src/index.js",
"src/index.d.ts"
],
"keywords": [
"servicestack",
"utils",
"validation",
"ajax",
"serverevents",
"error-handling"
],
"licenses": [],
"main": "src/index.js",
"types": "src/index.d.ts",
"dependencies": {
"es6-shim": "^0.35.3",
"eventsource": "^0.2.2",
"fetch-everywhere": "^1.0.5"
},
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/mocha": "^2.2.48",
"chai": "^4.1.2",
"fetch-everywhere": "^1.0.5",
"mocha": "^4.1.0",
"typescript": "^2.8.1"
}
}