-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.3 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
53
54
{
"name": "typescript-http-client",
"version": "0.10.5",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/taktik/typescript-http-client.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/taktik/typescript-http-client/issues"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run eslint && tsc --project tsconfig.build.json",
"eslint": "eslint src/*",
"test:debug": "karma start",
"test": "karma start --single-run"
},
"homepage": "https://github.com/taktik/typescript-http-client#readme",
"dependencies": {
"generic-logger-typings": "1.0.0"
},
"devDependencies": {
"@types/chai": "4.3.0",
"@types/mocha": "9.0.0",
"@types/sinon": "10.0.6",
"@typescript-eslint/eslint-plugin": "5.7.0",
"@typescript-eslint/parser": "5.7.0",
"chai": "4.3.4",
"eslint": "8.4.1",
"eslint-config-prettier": "8.3.0",
"husky": "7.0.4",
"karma": "6.3.9",
"karma-chrome-launcher": "3.1.0",
"karma-coverage": "2.1.0",
"karma-mocha": "2.0.1",
"karma-typescript": "5.5.2",
"lint-staged": "12.1.3",
"mocha": "9.1.3",
"prettier": "2.5.1",
"sinon": "12.0.1",
"typescript": "4.4.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}