-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.54 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
{
"name": "mixbook-http-client",
"version": "0.4.4",
"description":
"Composable TypeScript HTTP client for browser and NodeJS apps, with built-in mocking and 'middlewares' support",
"keywords": ["typescript", "http", "xhr", "node", "browser"],
"homepage": "https://github.com/Mixbook/mixbook_http_client.ts",
"types": "build",
"repository": "https://github.com/Mixbook/mixbook_http_client.ts",
"bugs": {
"url": "https://github.com/Mixbook/mixbook_http_client.ts/issues"
},
"author": {
"name": "Mixbook",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "NODE_ENV=test mocha -r ts-node/register --trace-warnings test/**/*.spec.ts",
"test:coverage": "NODE_ENV=test nyc -e '.ts' --r html -r lcov -r text yarn test",
"lint": "tslint --project ./tsconfig.json",
"lint:fix": "npm run lint -- --fix",
"format": "prettier -l src/**/*.ts",
"format:fix": "prettier --write src/**/*.ts"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/form-data": "^2.2.1",
"@types/mocha": "^5.0.0",
"@types/msgpack-lite": "^0.1.6",
"@types/node": "^9.6.5",
"chai": "^4.1.2",
"mocha": "^5.1.0",
"nyc": "^11.6.0",
"prettier": "^1.12.0",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.10.0",
"tslint-language-service": "^0.9.9",
"tslint-microsoft-contrib": "^5.0.3",
"typescript": "^2.8.1",
"yarn": "^1.5.1"
},
"dependencies": {
"form-data": "^2.3.2",
"msgpack-lite": "^0.1.26"
}
}