-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.57 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
55
56
57
58
{
"name": "@d3byte/rxjs-http",
"private": false,
"version": "1.1.2",
"description": "HTTP client based on observables",
"repository": "git@github.com:d3byte/rxjs-http.git",
"author": "d3byte <pandinator@protonmail.com>",
"license": "MIT",
"main": "lib/http.js",
"types": "lib/http.d.ts",
"keywords": [
"rxjs",
"http",
"client",
"http library",
"http client",
"typescript http",
"http rxjs",
"rxjs http"
],
"files": [
"lib/**/*"
],
"scripts": {
"boot-test-api": "node test-api.js",
"test": "jest --config jestconfig.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint --fix -p tsconfig.json",
"build": "tsc",
"prepublishOnly": "npm test && npm run lint",
"prepare": "npm run build",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn format",
"pre-push": "yarn test"
}
},
"dependencies": {
"fetch-ponyfill": "^6.1.0",
"rxjs": "^6.5.5"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"husky": "^4.2.5",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"ts-jest": "^26.0.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.3"
}
}