forked from microsoft/SimpleRestClients
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "simplerestclients",
"version": "0.0.14",
"description": "A library of components for accessing RESTful services with javascript/typescript.",
"author": "David de Regt <David.de.Regt@microsoft.com>",
"scripts": {
"prepublish": "tsc",
"build": "npm run tslint && tsc",
"tslint": "tslint --project tsconfig.json -r tslint.json -r./node_modules/tslint-microsoft-contrib --fix || true"
},
"dependencies": {
"@types/lodash": "^4.14.62",
"assert": "^1.4.1",
"lodash": "3.x || 4.x",
"synctasks": "^0.2.10"
},
"devDependencies": {
"typescript": "^2.2.0",
"tslint": "^5.0.0",
"tslint-microsoft-contrib": "^4.0.1"
},
"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"
}