forked from microsoft/SimpleRestClients
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.86 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.86 KB
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
{
"name": "simplerestclients",
"version": "0.2.8",
"description": "A library of components for accessing RESTful services with javascript/typescript.",
"author": "David de Regt <David.de.Regt@microsoft.com>",
"scripts": {
"prepare": "tsc",
"clean": "rimraf dist",
"build": "npm run lint && tsc",
"lint": "eslint --config .eslintrc src/* test/*",
"lint:fix": "npm run lint -- --fix",
"test": "npm run clean && karma start --singleRun",
"test:watch": "npm run clean && karma start",
"test:browser": "npm run clean && karma start --browsers=Chrome --single-run=false --auto-watch"
},
"dependencies": {
"@types/lodash": "^4.14.110",
"lodash": "^4.17.0",
"synctasks": "^0.3.3"
},
"devDependencies": {
"@types/faker": "4.1.5",
"@types/jasmine": "3.3.12",
"@types/jasmine-ajax": "3.1.39",
"@typescript-eslint/eslint-plugin": "1.9.0",
"@typescript-eslint/parser": "1.9.0",
"eslint": "5.16.0",
"eslint-config-skype": "0.0.3",
"faker": "4.1.0",
"fork-ts-checker-webpack-plugin": "1.3.3",
"jasmine": "3.4.0",
"jasmine-core": "3.4.0",
"karma": "4.1.0",
"karma-chrome-launcher": "2.2.0",
"karma-jasmine": "2.0.1",
"karma-jasmine-ajax": "0.1.13",
"karma-jasmine-html-reporter": "1.4.2",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "4.0.0-beta.0",
"rimraf": "2.6.3",
"ts-loader": "6.0.1",
"typescript": "3.4.5",
"webpack": "4.31.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/SimpleRestClients"
},
"main": "index.js",
"bugs": {
"url": "https://github.com/Microsoft/SimpleRestClients/issues"
},
"keywords": [
"simplerestclient",
"rest",
"restclient",
"xmlhttprequest",
"superagent"
],
"license": "MIT",
"types": "dist/SimpleRestClients.d.ts"
}